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:
parent
5fc9cabd15
commit
a35f88bfca
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user