1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-21 10:24:55 +00:00

(isfloat_string): Accept E like e.

This commit is contained in:
Richard M. Stallman 1996-09-26 21:20:05 +00:00
parent 5fc9cabd15
commit a35f88bfca

View File

@ -1671,7 +1671,7 @@ isfloat_string (cp)
while (*cp >= '0' && *cp <= '9')
cp++;
}
if (*cp == 'e')
if (*cp == 'e' || *cp == 'E')
{
state |= E_CHAR;
cp++;