diff options
Diffstat (limited to 'lcode.c')
-rw-r--r-- | lcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1804,7 +1804,7 @@ void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) { | |||
1804 | ** table (or LUA_MULTRET to add up to stack top). | 1804 | ** table (or LUA_MULTRET to add up to stack top). |
1805 | */ | 1805 | */ |
1806 | void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { | 1806 | void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { |
1807 | lua_assert(tostore != 0 && tostore <= LFIELDS_PER_FLUSH); | 1807 | lua_assert(tostore != 0); |
1808 | if (tostore == LUA_MULTRET) | 1808 | if (tostore == LUA_MULTRET) |
1809 | tostore = 0; | 1809 | tostore = 0; |
1810 | if (nelems <= MAXARG_C) | 1810 | if (nelems <= MAXARG_C) |