mirror of https://github.com/rusefi/lua.git
detail
This commit is contained in:
parent
b403317325
commit
facfcd497f
4
lvm.c
4
lvm.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lvm.c,v 2.80 2008/11/06 12:43:51 roberto Exp roberto $
|
** $Id: lvm.c,v 2.81 2009/02/16 20:09:28 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -399,7 +399,7 @@ void luaV_execute (lua_State *L) {
|
||||||
TValue *k;
|
TValue *k;
|
||||||
reentry: /* entry point */
|
reentry: /* entry point */
|
||||||
lua_assert(isLua(L->ci));
|
lua_assert(isLua(L->ci));
|
||||||
cl = &clvalue(L->ci->func)->l;
|
cl = &curr_func(L)->l;
|
||||||
base = L->base;
|
base = L->base;
|
||||||
k = cl->p->k;
|
k = cl->p->k;
|
||||||
/* main loop of interpreter */
|
/* main loop of interpreter */
|
||||||
|
|
Loading…
Reference in New Issue