From e742d542534637c7c64e7acd461512c80646a475 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Nov 1994 19:20:37 -0200 Subject: [PATCH] small bug correction --- opcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opcode.c b/opcode.c index 144a573e..a6945ced 100644 --- a/opcode.c +++ b/opcode.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_opcode="$Id: opcode.c,v 3.21 1994/11/22 16:02:53 roberto Exp roberto $"; +char *rcs_opcode="$Id: opcode.c,v 3.22 1994/11/23 14:31:11 roberto Stab roberto $"; #include #include @@ -485,7 +485,7 @@ void lua_endblock (void) */ int lua_storesubscript (void) { - static Byte code[2] = {STOREINDEXED, RETCODE0}; + static Byte code[2] = {STOREINDEXED0, RETCODE0}; Object func; tag(&func) = LUA_T_FUNCTION; bvalue(&func) = code; adjustC(3);