now that 'luaO_str2num' always accepts a dot as a radix character,

the lexer does not need to bother with this issue.
This commit is contained in:
Roberto Ierusalimschy
2016-05-02 11:02:12 -03:00
parent ed110f66c5
commit 0232fbffbe
2 changed files with 3 additions and 35 deletions

3
llex.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.h,v 1.77 2014/10/25 11:50:46 roberto Exp roberto $
** $Id: llex.h,v 1.78 2014/10/29 15:38:24 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -69,7 +69,6 @@ typedef struct LexState {
struct Dyndata *dyd; /* dynamic structures used by the parser */
TString *source; /* current source name */
TString *envn; /* environment variable name */
char decpoint; /* locale decimal point */
} LexState;