diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 17:57:52 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 17:57:52 +0000 |
commit | b78218b7f806d19fec2aa4d578cd6086927cd9ab (patch) | |
tree | af71f50c8ef8abc55c731855695298f50c849171 /toke.c | |
parent | 37bd1396ea9d91e675e031705a61835c0083b20a (diff) | |
download | perl-b78218b7f806d19fec2aa4d578cd6086927cd9ab.tar.gz |
misc tweaks
p4raw-id: //depot/perl@4086
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6517,7 +6517,7 @@ Perl_scan_num(pTHX_ char *start) s += 2; } /* check for a decimal in disguise */ - else if (strchr(".Ee", s[1])) + else if (s[1] == '.' || s[1] == 'e' || s[1] == 'E') goto decimal; /* so it must be octal */ else |