commit 3ef5a6797f5aa7c7cb6b970d92b3c6d52d8e9aaf
parent 9e6e43984da7c9c382fbd47badb4808e6fae96d3
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 23 Jan 2006 18:05:56 -0200
detail
Diffstat:
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/llex.c b/llex.c
@@ -1,5 +1,5 @@
/*
-** $Id: llex.c,v 2.16 2005/12/08 15:50:54 roberto Exp roberto $
+** $Id: llex.c,v 2.17 2005/12/22 16:19:56 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -193,12 +193,10 @@ static void read_numeral (LexState *ls, SemInfo *seminfo) {
do {
save_and_next(ls);
} while (isdigit(ls->current) || ls->current == '.');
- if (check_next(ls, "Ee")) { /* `E'? */
+ if (check_next(ls, "Ee")) /* `E'? */
check_next(ls, "+-"); /* optional exponent sign */
- while (isdigit(ls->current)) {
- save_and_next(ls);
- }
- }
+ while (isalnum(ls->current) || ls->current == '_')
+ save_and_next(ls);
save(ls, '\0');
buffreplace(ls, '.', ls->decpoint); /* follow locale for decimal point */
if (!luaO_str2d(luaZ_buffer(ls->buff), &seminfo->r)) /* format error? */