aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lparser.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index aad41483..351340be 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.32 2005/08/17 18:32:09 roberto Exp roberto $ 2** $Id: lparser.c,v 2.33 2005/08/22 18:54:32 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -526,7 +526,6 @@ static void constructor (LexState *ls, expdesc *t) {
526 checknext(ls, '{'); 526 checknext(ls, '{');
527 do { 527 do {
528 lua_assert(cc.v.k == VVOID || cc.tostore > 0); 528 lua_assert(cc.v.k == VVOID || cc.tostore > 0);
529 testnext(ls, ';'); /* compatibility only */
530 if (ls->t.token == '}') break; 529 if (ls->t.token == '}') break;
531 closelistfield(fs, &cc); 530 closelistfield(fs, &cc);
532 switch(ls->t.token) { 531 switch(ls->t.token) {