From 08da48a73ce9ec8d0672c45f67ff32650e937477 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 7 Aug 2002 17:55:00 -0300 Subject: detail --- ldo.c | 4 ++-- 1 file 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 @@ /* -** $Id: ldo.c,v 1.190 2002/08/06 15:32:22 roberto Exp roberto $ +** $Id: ldo.c,v 1.191 2002/08/07 19:22:39 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -248,7 +248,7 @@ StkId luaD_precall (lua_State *L, StkId func) { ci = L->ci; /* previous call may realocate `ci' */ } lua_unlock(L); -#if LUA_COMPATUPVALUES +#ifdef LUA_COMPATUPVALUES lua_pushupvalues(L); #endif n = (*clvalue(ci->base-1)->c.f)(L); /* do the actual call */ -- cgit v1.2.3-55-g6feb