commit 29e01934253adf5fbf43faff81d87d7470cef8ce
parent 61f97a8ace5b0df8de8da4e7473643a35956c2a7
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Fri, 3 Mar 2000 17:30:25 -0300
details
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lcode.c b/lcode.c
@@ -1,5 +1,5 @@
/*
-** $Id: lcode.c,v 1.3 2000/03/03 14:58:26 roberto Exp roberto $
+** $Id: lcode.c,v 1.4 2000/03/03 18:53:17 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -86,7 +86,7 @@ void luaK_retcode (LexState *ls, int nlocals, listdesc *e) {
*last = SETARG_B(*last, nlocals);
}
else
- luaK_U(ls, RETCODE, nlocals, 0);
+ luaK_primitivecode(ls, CREATE_U(RETCODE, nlocals));
}