Commit 299b5f9e by Kaveh R. Ghazi Committed by Kaveh Ghazi

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

From-SVN: r46399
parent e56feed6
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.
......
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment