diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 17:55:00 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 17:55:00 -0300 |
| commit | 08da48a73ce9ec8d0672c45f67ff32650e937477 (patch) | |
| tree | 8d42551284d6cec4466a5feaff76141205fde695 | |
| parent | 00a40f4d6a94216f7e8d40d69ab5402292d5120d (diff) | |
| download | lua-08da48a73ce9ec8d0672c45f67ff32650e937477.tar.gz lua-08da48a73ce9ec8d0672c45f67ff32650e937477.tar.bz2 lua-08da48a73ce9ec8d0672c45f67ff32650e937477.zip | |
detail
| -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 */ |
