comparison src/charset.c @ 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 53c330e846d0
children 4acd4faa545a
comparison
equal deleted inserted replaced
23396:24d9060befa8 23397:2fe04027242e
113 113
114 void 114 void
115 invalid_character (c) 115 invalid_character (c)
116 int c; 116 int c;
117 { 117 {
118 error ("Invalid character: %o, %d, 0x%x", c); 118 error ("Invalid character: 0%o, %d, 0x%x", c, c, c);
119 } 119 }
120 120
121 121
122 /* Set STR a pointer to the multi-byte form of the character C. If C 122 /* Set STR a pointer to the multi-byte form of the character C. If C
123 is not a composite character, the multi-byte form is set in WORKBUF 123 is not a composite character, the multi-byte form is set in WORKBUF