commit e9aa98d59484013b0aec29ddb197b3bd4b98b2f1
parent 3e9c6a8a247ef4c4c643dd951120409833221f86
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 25 Mar 1999 18:06:35 -0300
do not generate SETLINE after main (it will be after last line)
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lparser.c b/lparser.c
@@ -1,5 +1,5 @@
/*
-** $Id: lparser.c,v 1.29 1999/03/11 19:00:12 roberto Exp roberto $
+** $Id: lparser.c,v 1.30 1999/03/23 19:58:37 roberto Exp roberto $
** LL(1) Parser and code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -662,7 +662,6 @@ TProtoFunc *luaY_parser (ZIO *z) {
init_state(&lexstate, &funcstate, luaS_new(zname(z)));
next(&lexstate); /* read first token */
chunk(&lexstate);
- check_debugline(&lexstate);
if (lexstate.token != EOS)
luaX_error(&lexstate, "<eof> expected");
close_func(&lexstate);