aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lvm.c b/lvm.c
index c775b6c5..64df3762 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.181 2001/06/08 12:29:27 roberto Exp roberto $ 2** $Id: lvm.c,v 1.182 2001/06/08 19:00:57 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -371,9 +371,7 @@ StkId luaV_execute (lua_State *L, const Closure *cl, StkId base) {
371 adjust_varargs(L, base, tf->numparams); 371 adjust_varargs(L, base, tf->numparams);
372 if (base > L->stack_last - tf->maxstacksize) 372 if (base > L->stack_last - tf->maxstacksize)
373 luaD_stackerror(L); 373 luaD_stackerror(L);
374 while (L->top < base+tf->maxstacksize) 374 luaD_adjusttop(L, base + tf->maxstacksize);
375 setnilvalue(L->top++);
376 L->top = base + tf->maxstacksize;
377 pc = tf->code; 375 pc = tf->code;
378 L->ci->pc = &pc; 376 L->ci->pc = &pc;
379 linehook = L->linehook; 377 linehook = L->linehook;