diff options
| -rw-r--r-- | lvm.c | 4 | ||||
| -rw-r--r-- | lvm.h | 4 |
2 files changed, 4 insertions, 4 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lvm.c,v 2.285 2017/05/23 12:50:11 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.286 2017/06/01 20:22:33 roberto Exp roberto $ |
| 3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -1439,7 +1439,7 @@ void luaV_execute (lua_State *L) { | |||
| 1439 | } | 1439 | } |
| 1440 | vmcase(OP_VARARG) { | 1440 | vmcase(OP_VARARG) { |
| 1441 | int b = GETARG_B(i) - 1; /* required results */ | 1441 | int b = GETARG_B(i) - 1; /* required results */ |
| 1442 | StkId vtab = base + cl->p->numparams - 1; /* vararg table */ | 1442 | StkId vtab = base + cl->p->numparams - 1; /* vararg table */ |
| 1443 | Protect(luaT_getvarargs(L, vtab, ra, b)); | 1443 | Protect(luaT_getvarargs(L, vtab, ra, b)); |
| 1444 | vmbreak; | 1444 | vmbreak; |
| 1445 | } | 1445 | } |
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lvm.h,v 2.42 2017/05/11 18:57:46 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $ |
| 3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -76,7 +76,7 @@ | |||
| 76 | 76 | ||
| 77 | /* | 77 | /* |
| 78 | ** Finish a fast set operation (when fast get succeeds). In that case, | 78 | ** Finish a fast set operation (when fast get succeeds). In that case, |
| 79 | ** 'slot' points to the place to put the value. | 79 | ** 'slot' points to the place to put the value. |
| 80 | */ | 80 | */ |
| 81 | #define luaV_finishfastset(L,t,slot,v) \ | 81 | #define luaV_finishfastset(L,t,slot,v) \ |
| 82 | { setobj2t(L, cast(TValue *,slot), v); \ | 82 | { setobj2t(L, cast(TValue *,slot), v); \ |
