aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index 22702a00..81e10851 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 2.147 2017/11/13 15:36:52 roberto Exp roberto $ 2** $Id: lstate.c,v 2.148 2017/11/23 16:35:54 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*/
@@ -177,7 +177,7 @@ static void stack_init (lua_State *L1, lua_State *L) {
177 /* initialize first ci */ 177 /* initialize first ci */
178 ci = &L1->base_ci; 178 ci = &L1->base_ci;
179 ci->next = ci->previous = NULL; 179 ci->next = ci->previous = NULL;
180 ci->callstatus = 0; 180 ci->callstatus = CIST_C;
181 ci->func = L1->top; 181 ci->func = L1->top;
182 setnilvalue(s2v(L1->top)); /* 'function' entry for this 'ci' */ 182 setnilvalue(s2v(L1->top)); /* 'function' entry for this 'ci' */
183 L1->top++; 183 L1->top++;