aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto I <roberto@inf.puc-rio.br>2025-09-16 13:26:24 -0300
committerRoberto I <roberto@inf.puc-rio.br>2025-09-16 13:26:24 -0300
commit140b672e2ee2ac842661ece4b48e1a64f0cd11ea (patch)
treeb925cd1e40712ab09a75ef2c0e30095aac0af0aa /lvm.c
parent9ea06e61f20ae34974226074fc6123dbb54a07c2 (diff)
downloadlua-140b672e2ee2ac842661ece4b48e1a64f0cd11ea.tar.gz
lua-140b672e2ee2ac842661ece4b48e1a64f0cd11ea.tar.bz2
lua-140b672e2ee2ac842661ece4b48e1a64f0cd11ea.zip
Vararg table
Not yet optimized nor documented.
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lvm.c b/lvm.c
index d0a1c05d..d88a80d1 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1927,7 +1927,7 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
1927 vmbreak; 1927 vmbreak;
1928 } 1928 }
1929 vmcase(OP_VARARGPREP) { 1929 vmcase(OP_VARARGPREP) {
1930 ProtectNT(luaT_adjustvarargs(L, GETARG_A(i), ci, cl->p)); 1930 ProtectNT(luaT_adjustvarargs(L, ci, cl->p));
1931 if (l_unlikely(trap)) { /* previous "Protect" updated trap */ 1931 if (l_unlikely(trap)) { /* previous "Protect" updated trap */
1932 luaD_hookcall(L, ci); 1932 luaD_hookcall(L, ci);
1933 L->oldpc = 1; /* next opcode will be seen as a "new" line */ 1933 L->oldpc = 1; /* next opcode will be seen as a "new" line */