* lex.c (java_lex): Check for e' or E' after 0.

From-SVN: r55664
This commit is contained in:
Tom Tromey 2002-07-23 03:20:27 +00:00 committed by Tom Tromey
parent 9cc37f69d2
commit e75abdabb2
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-07-22 Tom Tromey <tromey@redhat.com>
* lex.c (java_lex): Check for `e' or `E' after 0.
2002-07-21 Richard Henderson <rth@redhat.com>
* lang.c (java_unsafe_for_reeval): New.

View File

@ -1023,9 +1023,10 @@ java_lex (java_lval)
}
else if (JAVA_ASCII_DIGIT (c))
radix = 8;
else if (c == '.')
else if (c == '.' || c == 'e' || c =='E')
{
/* Push the '.' back and prepare for a FP parsing... */
/* Push the '.', 'e', or 'E' back and prepare for a FP
parsing... */
java_unget_unicode ();
c = '0';
}