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 dc6da54f..d9e5a889 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.22 2005/04/05 13:41:29 roberto Exp roberto $ 2** $Id: ldo.c,v 2.23 2005/05/03 19:01:17 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*/
@@ -198,7 +198,7 @@ static StkId adjust_varargs (lua_State *L, int nfixargs, int actual,
198 for (; actual < nfixargs; ++actual) 198 for (; actual < nfixargs; ++actual)
199 setnilvalue(L->top++); 199 setnilvalue(L->top++);
200 } 200 }
201#if LUA_COMPAT_VARARG 201#if defined(LUA_COMPAT_VARARG)
202 if (style != NEWSTYLEVARARG) { /* compatibility with old-style vararg */ 202 if (style != NEWSTYLEVARARG) { /* compatibility with old-style vararg */
203 int nvar = actual - nfixargs; /* number of extra arguments */ 203 int nvar = actual - nfixargs; /* number of extra arguments */
204 luaC_checkGC(L); 204 luaC_checkGC(L);