This commit is contained in:
Roberto Ierusalimschy
2000-08-15 15:28:48 -03:00
parent ddc8d94a08
commit 44eb7d91ac
6 changed files with 20 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lparser.c,v 1.107 2000/08/09 19:16:57 roberto Exp roberto $
** $Id: lparser.c,v 1.108 2000/08/14 17:46:27 roberto Exp roberto $
** LL(1) Parser and code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -1024,7 +1024,7 @@ static void breakstat (LexState *ls) {
next(ls); /* skip BREAK */
luaK_adjuststack(fs, currentlevel - bl->stacklevel);
luaK_concat(fs, &bl->breaklist, luaK_jump(fs));
/* correct stack for compiler and simbolic execution */
/* correct stack for compiler and symbolic execution */
luaK_adjuststack(fs, bl->stacklevel - currentlevel);
}