* gjavah.c (jni_print_char): Fix thinko in last change.

From-SVN: r46399
This commit is contained in:
Kaveh R. Ghazi 2001-10-22 03:58:19 +00:00 committed by Kaveh Ghazi
parent e56feed63f
commit 299b5f9ee9
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2001-10-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gjavah.c (jni_print_char): Fix thinko in last change.
* gjavah.c (jni_print_char, decode_signature_piece): Use
safe-ctype macros and/or fold extra calls into fewer ones.
* lex.c (java_read_unicode, java_lex): Likewise.

View file

@ -287,7 +287,7 @@ jni_print_char (stream, ch)
fputs ("_3", stream);
else if (ch == '/')
fputs ("_", stream);
else if (ISXDIGIT (ch))
else if (ISALNUM (ch))
fputc (ch, stream);
else
{