This commit is contained in:
Roberto Ierusalimschy
2002-11-22 16:01:46 -02:00
parent 2d2d45976c
commit dbc5451bea
5 changed files with 15 additions and 15 deletions

4
ldo.c
View File

@@ -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