diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.53 2008/06/26 19:42:45 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.54 2008/08/13 17:02:12 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -349,7 +349,7 @@ printf(">>> %d %s %02x\n", g->gcstate, luaT_typenames[gch(o)->tt], gch(o)->mar | |||
349 | 349 | ||
350 | 350 | ||
351 | int lua_checkpc (lua_State *L, pCallInfo ci) { | 351 | int lua_checkpc (lua_State *L, pCallInfo ci) { |
352 | if (ci == L->base_ci || !f_isLua(ci)) return 1; | 352 | if (ci == L->base_ci || !isLua(ci)) return 1; |
353 | else { | 353 | else { |
354 | Proto *p = ci_func(ci)->l.p; | 354 | Proto *p = ci_func(ci)->l.p; |
355 | if (ci < L->ci) | 355 | if (ci < L->ci) |