aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcode.c b/lcode.c
index bc0a3341..a74c2a16 100644
--- a/lcode.c
+++ b/lcode.c
@@ -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*/
1806void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { 1806void 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)