aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 2d9c2285..be97e2bb 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.3 2000/03/03 14:58:26 roberto Exp roberto $ 2** $Id: lcode.c,v 1.4 2000/03/03 18:53:17 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*/
@@ -86,7 +86,7 @@ void luaK_retcode (LexState *ls, int nlocals, listdesc *e) {
86 *last = SETARG_B(*last, nlocals); 86 *last = SETARG_B(*last, nlocals);
87 } 87 }
88 else 88 else
89 luaK_U(ls, RETCODE, nlocals, 0); 89 luaK_primitivecode(ls, CREATE_U(RETCODE, nlocals));
90} 90}
91 91
92 92