aboutsummaryrefslogtreecommitdiff
path: root/src/lua/lvm.c
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-08-06 01:00:41 +0800
committerLi Jin <dragon-fly@qq.com>2020-08-06 01:00:41 +0800
commit2506c1b429e952245295e54e71dac4b345e88984 (patch)
treeef9f243b6ca18d07b2734041c93fb496cdd8d796 /src/lua/lvm.c
parentc74f45ba9778792e6f5a239539d25fd7918252f7 (diff)
downloadyuescript-2506c1b429e952245295e54e71dac4b345e88984.tar.gz
yuescript-2506c1b429e952245295e54e71dac4b345e88984.tar.bz2
yuescript-2506c1b429e952245295e54e71dac4b345e88984.zip
update Lua 5.4.
Diffstat (limited to 'src/lua/lvm.c')
-rw-r--r--src/lua/lvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lvm.c b/src/lua/lvm.c
index 66d451b..08681af 100644
--- a/src/lua/lvm.c
+++ b/src/lua/lvm.c
@@ -1794,7 +1794,7 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
1794 ProtectNT(luaT_adjustvarargs(L, GETARG_A(i), ci, cl->p)); 1794 ProtectNT(luaT_adjustvarargs(L, GETARG_A(i), ci, cl->p));
1795 if (trap) { 1795 if (trap) {
1796 luaD_hookcall(L, ci); 1796 luaD_hookcall(L, ci);
1797 L->oldpc = pc + 1; /* next opcode will be seen as a "new" line */ 1797 L->oldpc = 1; /* next opcode will be seen as a "new" line */
1798 } 1798 }
1799 updatebase(ci); /* function has new base after adjustment */ 1799 updatebase(ci); /* function has new base after adjustment */
1800 vmbreak; 1800 vmbreak;