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-github-dbc5451bea323e8908fcedff2a89bcf73ed5cb57.tar.gz |
comments
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.207 2002/11/21 17:19:11 roberto Exp roberto $ +** $Id: ldo.c,v 1.208 2002/11/22 17:16:52 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -246,7 +246,7 @@ StkId luaD_precall (lua_State *L, StkId func) { ci->state = CI_C; /* a C function */ if (L->hookmask & LUA_MASKCALL) { luaD_callhook(L, LUA_HOOKCALL, -1); - ci = L->ci; /* previous call may realocate `ci' */ + ci = L->ci; /* previous call may reallocate `ci' */ } lua_unlock(L); #ifdef LUA_COMPATUPVALUES |