aboutsummaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index e99bb342..45506b9c 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.60 2008/10/30 15:39:30 roberto Exp roberto $ 2** $Id: lparser.c,v 2.61 2009/03/26 12:56:38 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*/
@@ -376,7 +376,6 @@ static void close_func (LexState *ls) {
376 f->sizelocvars = fs->nlocvars; 376 f->sizelocvars = fs->nlocvars;
377 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, f->nups, TString *); 377 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, f->nups, TString *);
378 f->sizeupvalues = f->nups; 378 f->sizeupvalues = f->nups;
379 lua_assert(luaG_checkcode(f));
380 lua_assert(fs->bl == NULL); 379 lua_assert(fs->bl == NULL);
381 ls->fs = fs->prev; 380 ls->fs = fs->prev;
382 L->top -= 2; /* remove table and prototype from the stack */ 381 L->top -= 2; /* remove table and prototype from the stack */