changeset 23397:2fe04027242e

(invalid_character): Prepend `0' to octal representation. Give error sufficient args.
author Kenichi Handa <handa@m17n.org>
date Thu, 08 Oct 1998 06:45:36 +0000
parents 24d9060befa8
children a80f6d8c1dc6
files src/charset.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/charset.c	Thu Oct 08 02:20:26 1998 +0000
+++ b/src/charset.c	Thu Oct 08 06:45:36 1998 +0000
@@ -115,7 +115,7 @@
 invalid_character (c)
      int c;
 {
-  error ("Invalid character: %o, %d, 0x%x", c);
+  error ("Invalid character: 0%o, %d, 0x%x", c, c, c);
 }