diff options
Diffstat (limited to 'src/lib_jit.c')
-rw-r--r-- | src/lib_jit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib_jit.c b/src/lib_jit.c index 818b8787..31b27ccb 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c | |||
@@ -191,7 +191,7 @@ LJLIB_CF(jit_util_funcinfo) | |||
191 | setintfield(L, t, "upvalues", (int32_t)pt->sizeuv); | 191 | setintfield(L, t, "upvalues", (int32_t)pt->sizeuv); |
192 | if (pc < pt->sizebc) | 192 | if (pc < pt->sizebc) |
193 | setintfield(L, t, "currentline", lj_debug_line(pt, pc)); | 193 | setintfield(L, t, "currentline", lj_debug_line(pt, pc)); |
194 | lua_pushboolean(L, (pt->flags & PROTO_IS_VARARG)); | 194 | lua_pushboolean(L, (pt->flags & PROTO_VARARG)); |
195 | lua_setfield(L, -2, "isvararg"); | 195 | lua_setfield(L, -2, "isvararg"); |
196 | setstrV(L, L->top++, proto_chunkname(pt)); | 196 | setstrV(L, L->top++, proto_chunkname(pt)); |
197 | lua_setfield(L, -2, "source"); | 197 | lua_setfield(L, -2, "source"); |