aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-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 */