* gjavah.c (jni_print_char): Fix thinko in last change.
From-SVN: r46399
This commit is contained in:
parent
e56feed63f
commit
299b5f9ee9
2 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue