diff options
Diffstat (limited to 'src/lstate.js')
-rw-r--r-- | src/lstate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lstate.js b/src/lstate.js index b7a11bc..9046adf 100644 --- a/src/lstate.js +++ b/src/lstate.js @@ -109,8 +109,8 @@ const stack_init = function(L1, L) { let ci = L1.base_ci; ci.next = ci.previous = null; ci.callstatus = 0; - ci.func = L1.stack[L1.top]; ci.funcOff = L1.top; + ci.func = L1.stack[L1.top]; L1.stack[L1.top++] = new lobject.TValue(CT.LUA_TNIL, null); ci.top = L1.top + defs.LUA_MINSTACK; L1.ci = ci; |