diff options
Diffstat (limited to 'ldebug.c')
-rw-r--r-- | ldebug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -939,7 +939,7 @@ int luaG_traceexec (lua_State *L, const Instruction *pc) { | |||
939 | ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */ | 939 | ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */ |
940 | return 1; /* do not call hook again (VM yielded, so it did not move) */ | 940 | return 1; /* do not call hook again (VM yielded, so it did not move) */ |
941 | } | 941 | } |
942 | if (!isIT(*(ci->u.l.savedpc - 1))) /* top not being used? */ | 942 | if (!luaP_isIT(*(ci->u.l.savedpc - 1))) /* top not being used? */ |
943 | L->top.p = ci->top.p; /* correct top */ | 943 | L->top.p = ci->top.p; /* correct top */ |
944 | if (counthook) | 944 | if (counthook) |
945 | luaD_hook(L, LUA_HOOKCOUNT, -1, 0, 0); /* call count hook */ | 945 | luaD_hook(L, LUA_HOOKCOUNT, -1, 0, 0); /* call count hook */ |