diff options
| author | Juri Linkov | 2005-11-20 07:52:40 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-11-20 07:52:40 +0000 |
| commit | 85416bdad7f0a391bd3a9bdd93a9905eba422a40 (patch) | |
| tree | 05385cadce958eb8429eb0a409ab9ef1a7ba0d77 /src | |
| parent | c9393a612b5aeeefb98461e43f3c4b06e25ae999 (diff) | |
| download | emacs-85416bdad7f0a391bd3a9bdd93a9905eba422a40.tar.gz emacs-85416bdad7f0a391bd3a9bdd93a9905eba422a40.zip | |
(invalid_character): Use Lisp-readable syntax
for octal and hex. Reorder decimal, octal and hex values.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index b4f84a9e785..23b2cc75c1f 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -115,7 +115,7 @@ void | |||
| 115 | invalid_character (c) | 115 | invalid_character (c) |
| 116 | int c; | 116 | int c; |
| 117 | { | 117 | { |
| 118 | error ("Invalid character: 0%o, %d, 0x%x", c, c, c); | 118 | error ("Invalid character: %d, #o%o, #x%x", c, c, c); |
| 119 | } | 119 | } |
| 120 | 120 | ||
| 121 | /* Parse string STR of length LENGTH and fetch information of a | 121 | /* Parse string STR of length LENGTH and fetch information of a |