summaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index bd0d2612..adaff37a 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.47 2000/08/10 19:50:47 roberto Exp roberto $ 2** $Id: lcode.c,v 1.48 2000/08/14 17:46:27 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -330,7 +330,7 @@ void luaK_tostack (LexState *ls, expdesc *v, int onlyone) {
330 luaK_concat(fs, &v->u.l.t, fs->pc-1); /* put `previous' in t. list */ 330 luaK_concat(fs, &v->u.l.t, fs->pc-1); /* put `previous' in t. list */
331 else { 331 else {
332 j = code_label(fs, OP_JMP, NO_JUMP); /* to jump over both pushes */ 332 j = code_label(fs, OP_JMP, NO_JUMP); /* to jump over both pushes */
333 /* correct stack for compiler and simbolic execution */ 333 /* correct stack for compiler and symbolic execution */
334 luaK_adjuststack(fs, 1); 334 luaK_adjuststack(fs, 1);
335 } 335 }
336 p_nil = code_label(fs, OP_PUSHNILJMP, 0); 336 p_nil = code_label(fs, OP_PUSHNILJMP, 0);