This commit is contained in:
Roberto Ierusalimschy
1999-02-12 17:23:02 -02:00
parent b82ff713e3
commit bf6d2ccf92
6 changed files with 19 additions and 22 deletions

4
ldo.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: ldo.c,v 1.30 1999/01/15 11:38:33 roberto Exp roberto $
** $Id: ldo.c,v 1.31 1999/02/04 17:47:59 roberto Exp roberto $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
@@ -136,7 +136,7 @@ static StkId callC (lua_CFunction f, StkId base)
if (L->callhook)
luaD_callHook(base, NULL, 0);
(*f)(); /* do the actual call */
if (L->callhook) /* func may have changed lua_callhook */
if (L->callhook) /* func may have changed callhook */
luaD_callHook(base, NULL, 1);
firstResult = CS->base;
*CS = oldCLS;