summaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index cc9a6c9a..1ae80cfb 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 1.107 2000/08/09 19:16:57 roberto Exp roberto $ 2** $Id: lparser.c,v 1.108 2000/08/14 17:46:27 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** LL(1) Parser and code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -1024,7 +1024,7 @@ static void breakstat (LexState *ls) {
1024 next(ls); /* skip BREAK */ 1024 next(ls); /* skip BREAK */
1025 luaK_adjuststack(fs, currentlevel - bl->stacklevel); 1025 luaK_adjuststack(fs, currentlevel - bl->stacklevel);
1026 luaK_concat(fs, &bl->breaklist, luaK_jump(fs)); 1026 luaK_concat(fs, &bl->breaklist, luaK_jump(fs));
1027 /* correct stack for compiler and simbolic execution */ 1027 /* correct stack for compiler and symbolic execution */
1028 luaK_adjuststack(fs, bl->stacklevel - currentlevel); 1028 luaK_adjuststack(fs, bl->stacklevel - currentlevel);
1029} 1029}
1030 1030