aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-07 17:55:00 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-07 17:55:00 -0300
commit08da48a73ce9ec8d0672c45f67ff32650e937477 (patch)
tree8d42551284d6cec4466a5feaff76141205fde695
parent00a40f4d6a94216f7e8d40d69ab5402292d5120d (diff)
downloadlua-08da48a73ce9ec8d0672c45f67ff32650e937477.tar.gz
lua-08da48a73ce9ec8d0672c45f67ff32650e937477.tar.bz2
lua-08da48a73ce9ec8d0672c45f67ff32650e937477.zip
detail
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 8f125372..cb7a18c7 100644
--- a/ldo.c
+++ b/ldo.c
@@ -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 */