mirror of https://github.com/rusefi/lua.git
parent
b6f87491af
commit
d13a3fb070
4
lvm.c
4
lvm.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lvm.c,v 2.285 2017/05/23 12:50:11 roberto Exp roberto $
|
** $Id: lvm.c,v 2.286 2017/06/01 20:22:33 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -1439,7 +1439,7 @@ void luaV_execute (lua_State *L) {
|
||||||
}
|
}
|
||||||
vmcase(OP_VARARG) {
|
vmcase(OP_VARARG) {
|
||||||
int b = GETARG_B(i) - 1; /* required results */
|
int b = GETARG_B(i) - 1; /* required results */
|
||||||
StkId vtab = base + cl->p->numparams - 1; /* vararg table */
|
StkId vtab = base + cl->p->numparams - 1; /* vararg table */
|
||||||
Protect(luaT_getvarargs(L, vtab, ra, b));
|
Protect(luaT_getvarargs(L, vtab, ra, b));
|
||||||
vmbreak;
|
vmbreak;
|
||||||
}
|
}
|
||||||
|
|
4
lvm.h
4
lvm.h
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lvm.h,v 2.42 2017/05/11 18:57:46 roberto Exp roberto $
|
** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Finish a fast set operation (when fast get succeeds). In that case,
|
** Finish a fast set operation (when fast get succeeds). In that case,
|
||||||
** 'slot' points to the place to put the value.
|
** 'slot' points to the place to put the value.
|
||||||
*/
|
*/
|
||||||
#define luaV_finishfastset(L,t,slot,v) \
|
#define luaV_finishfastset(L,t,slot,v) \
|
||||||
{ setobj2t(L, cast(TValue *,slot), v); \
|
{ setobj2t(L, cast(TValue *,slot), v); \
|
||||||
|
|
Loading…
Reference in New Issue