This commit is contained in:
Roberto Ierusalimschy
2000-08-15 15:28:48 -03:00
parent ddc8d94a08
commit 44eb7d91ac
6 changed files with 20 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.c,v 1.47 2000/08/10 19:50:47 roberto Exp roberto $
** $Id: lcode.c,v 1.48 2000/08/14 17:46:27 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -330,7 +330,7 @@ void luaK_tostack (LexState *ls, expdesc *v, int onlyone) {
luaK_concat(fs, &v->u.l.t, fs->pc-1); /* put `previous' in t. list */
else {
j = code_label(fs, OP_JMP, NO_JUMP); /* to jump over both pushes */
/* correct stack for compiler and simbolic execution */
/* correct stack for compiler and symbolic execution */
luaK_adjuststack(fs, 1);
}
p_nil = code_label(fs, OP_PUSHNILJMP, 0);