summaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-14 14:06:09 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-14 14:06:09 -0200
commit5873786e276d4c6f2b5c27880a676cb53059df57 (patch)
tree1fd68aace4af6e0ae3c1f5fa72213a8f30e31663 /llex.c
parentcb59019f580ae0cb863cbf903efae28cf67c33af (diff)
downloadlua-github-5873786e276d4c6f2b5c27880a676cb53059df57.tar.gz
small bug (error of "chunk has too many lines" might use 't.token'
before reading the first token)
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 31b4ce85..2a4d8404 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
/*
-** $Id: llex.c,v 2.87 2014/10/30 18:53:28 roberto Exp roberto $
+** $Id: llex.c,v 2.88 2014/11/02 19:19:04 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -156,12 +156,13 @@ static void inclinenumber (LexState *ls) {
if (currIsNewline(ls) && ls->current != old)
next(ls); /* skip '\n\r' or '\r\n' */
if (++ls->linenumber >= MAX_INT)
- luaX_syntaxerror(ls, "chunk has too many lines");
+ lexerror(ls, "chunk has too many lines", 0);
}
void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source,
int firstchar) {
+ ls->t.token = 0;
ls->decpoint = '.';
ls->L = L;
ls->current = firstchar;