summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ldo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldo.c b/ldo.c
index cc5be57b..5080d29e 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.153 2016/08/01 19:51:24 roberto Exp roberto $ 2** $Id: ldo.c,v 2.155 2016/09/08 16:36:26 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*/
@@ -232,8 +232,8 @@ void luaD_shrinkstack (lua_State *L) {
232 if (inuse <= (LUAI_MAXSTACK - EXTRA_STACK) && 232 if (inuse <= (LUAI_MAXSTACK - EXTRA_STACK) &&
233 goodsize < L->stacksize) 233 goodsize < L->stacksize)
234 luaD_reallocstack(L, goodsize); 234 luaD_reallocstack(L, goodsize);
235 else 235 else /* don't change stack */
236 condmovestack(L,,); /* don't change stack (change only for debugging) */ 236 condmovestack(L,{},{}); /* (change only for debugging) */
237} 237}
238 238
239 239