aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index 4fad569d..0c6878a1 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 1.82 2000/04/12 18:57:19 roberto Exp roberto $ 2** $Id: lparser.c,v 1.83 2000/04/27 17:39:56 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*/
@@ -933,7 +933,7 @@ static void forstat (LexState *ls, int line) {
933 block(ls); 933 block(ls);
934 luaK_patchlist(fs, prep, luaK_getlabel(fs)); 934 luaK_patchlist(fs, prep, luaK_getlabel(fs));
935 luaK_patchlist(fs, luaK_code0(fs, OP_FORLOOP), blockinit); 935 luaK_patchlist(fs, luaK_code0(fs, OP_FORLOOP), blockinit);
936 check_END(ls, TK_WHILE, line); 936 check_END(ls, TK_FOR, line);
937 leavebreak(fs, &bl); 937 leavebreak(fs, &bl);
938 removelocalvars(ls, 3, fs->lastsetline); 938 removelocalvars(ls, 3, fs->lastsetline);
939} 939}