From 7482e8f914fbf198af02c2970cf0aadd80740f92 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Feb 2011 10:13:10 -0300 Subject: no need of lookahead in Zio --- lparser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lparser.c') diff --git a/lparser.c b/lparser.c index 56cd417a..41ba802d 100644 --- a/lparser.c +++ b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 2.105 2011/02/14 14:59:28 roberto Exp roberto $ +** $Id: lparser.c,v 2.106 2011/02/14 16:36:34 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -1568,7 +1568,7 @@ static void statement (LexState *ls) { Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, - Dyndata *dyd, const char *name) { + Dyndata *dyd, const char *name, int firstchar) { LexState lexstate; FuncState funcstate; BlockCnt bl; @@ -1578,7 +1578,7 @@ Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, lexstate.buff = buff; lexstate.dyd = dyd; dyd->actvar.n = dyd->gt.n = dyd->label.n = 0; - luaX_setinput(L, &lexstate, z, tname); + luaX_setinput(L, &lexstate, z, tname, firstchar); open_mainfunc(&lexstate, &funcstate, &bl); luaX_next(&lexstate); /* read first token */ statlist(&lexstate); /* main body */ -- cgit v1.2.3-55-g6feb