diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-22 16:01:46 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-22 16:01:46 -0200 |
commit | dbc5451bea323e8908fcedff2a89bcf73ed5cb57 (patch) | |
tree | 05da7486e49d5f0e2670d275822629bdcd8aa09c /ldo.c | |
parent | 2d2d45976ce41de04e9007c8a78a8ba244d1fdc5 (diff) | |
download | lua-dbc5451bea323e8908fcedff2a89bcf73ed5cb57.tar.gz lua-dbc5451bea323e8908fcedff2a89bcf73ed5cb57.tar.bz2 lua-dbc5451bea323e8908fcedff2a89bcf73ed5cb57.zip |
comments
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 1.207 2002/11/21 17:19:11 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.208 2002/11/22 17:16:52 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -246,7 +246,7 @@ StkId luaD_precall (lua_State *L, StkId func) { | |||
246 | ci->state = CI_C; /* a C function */ | 246 | ci->state = CI_C; /* a C function */ |
247 | if (L->hookmask & LUA_MASKCALL) { | 247 | if (L->hookmask & LUA_MASKCALL) { |
248 | luaD_callhook(L, LUA_HOOKCALL, -1); | 248 | luaD_callhook(L, LUA_HOOKCALL, -1); |
249 | ci = L->ci; /* previous call may realocate `ci' */ | 249 | ci = L->ci; /* previous call may reallocate `ci' */ |
250 | } | 250 | } |
251 | lua_unlock(L); | 251 | lua_unlock(L); |
252 | #ifdef LUA_COMPATUPVALUES | 252 | #ifdef LUA_COMPATUPVALUES |