aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index 77999877..c6ca5b9b 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 2.53 2009/04/17 22:00:01 roberto Exp roberto $ 2** $Id: lstate.c,v 2.54 2009/04/28 19:04:36 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -86,7 +86,6 @@ static void stack_init (lua_State *L1, lua_State *L) {
86 /* initialize first ci */ 86 /* initialize first ci */
87 L1->ci->func = L1->top; 87 L1->ci->func = L1->top;
88 setnilvalue(L1->top++); /* 'function' entry for this 'ci' */ 88 setnilvalue(L1->top++); /* 'function' entry for this 'ci' */
89 L1->base = L1->ci->base = L1->top;
90 L1->ci->top = L1->top + LUA_MINSTACK; 89 L1->ci->top = L1->top + LUA_MINSTACK;
91 L1->ci->callstatus = 0; 90 L1->ci->callstatus = 0;
92} 91}