diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-09-20 13:37:45 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-09-20 13:37:45 -0300 |
| commit | 8edbf57fb8e3c20aac9560b7e4cce7583d14ebf6 (patch) | |
| tree | 4281b8d7d901e3e9c38320546e1108e50c6cf0a6 | |
| parent | 7fe1a4cff3998bf019144924f39aec3f76a5cf32 (diff) | |
| download | lua-8edbf57fb8e3c20aac9560b7e4cce7583d14ebf6.tar.gz lua-8edbf57fb8e3c20aac9560b7e4cce7583d14ebf6.tar.bz2 lua-8edbf57fb8e3c20aac9560b7e4cce7583d14ebf6.zip | |
detail (ANSI C does not accept empty arguments to macros)
| -rw-r--r-- | ldo.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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 | ||
