diff options
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.190 2002/08/06 15:32:22 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.191 2002/08/07 19:22:39 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 | */ |
@@ -248,7 +248,7 @@ StkId luaD_precall (lua_State *L, StkId func) { | |||
248 | ci = L->ci; /* previous call may realocate `ci' */ | 248 | ci = L->ci; /* previous call may realocate `ci' */ |
249 | } | 249 | } |
250 | lua_unlock(L); | 250 | lua_unlock(L); |
251 | #if LUA_COMPATUPVALUES | 251 | #ifdef LUA_COMPATUPVALUES |
252 | lua_pushupvalues(L); | 252 | lua_pushupvalues(L); |
253 | #endif | 253 | #endif |
254 | n = (*clvalue(ci->base-1)->c.f)(L); /* do the actual call */ | 254 | n = (*clvalue(ci->base-1)->c.f)(L); /* do the actual call */ |