mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-08 15:35:02 +00:00
(invalid_character): Use Lisp-readable syntax
for octal and hex. Reorder decimal, octal and hex values.
This commit is contained in:
parent
c9393a612b
commit
85416bdad7
@ -115,7 +115,7 @@ void
|
||||
invalid_character (c)
|
||||
int c;
|
||||
{
|
||||
error ("Invalid character: 0%o, %d, 0x%x", c, c, c);
|
||||
error ("Invalid character: %d, #o%o, #x%x", c, c, c);
|
||||
}
|
||||
|
||||
/* Parse string STR of length LENGTH and fetch information of a
|
||||
|
Loading…
Reference in New Issue
Block a user