# HG changeset patch # User Kenichi Handa # Date 907829136 0 # Node ID 2fe04027242e8469f0046c9e3c434f318b46701f # Parent 24d9060befa82a351b2b4f6887b2bd4cd6ab1274 (invalid_character): Prepend `0' to octal representation. Give error sufficient args. diff -r 24d9060befa8 -r 2fe04027242e src/charset.c --- 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); }