From 7a35f23c1688e3e24781c780e121bbdc0e4b53e1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 21 Mar 1996 15:55:02 -0300 Subject: a simplification about memory error messages. --- opcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opcode.c') diff --git a/opcode.c b/opcode.c index c7db7824..539f2cf3 100644 --- a/opcode.c +++ b/opcode.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_opcode="$Id: opcode.c,v 3.63 1996/03/20 17:05:44 roberto Exp roberto $"; +char *rcs_opcode="$Id: opcode.c,v 3.64 1996/03/21 16:31:32 roberto Exp roberto $"; #include #include @@ -102,7 +102,7 @@ static void growstack (void) if (stacksize >= limit) { limit = stacksize; - lua_error(luaI_memerrormsg[stackEM]); + lua_error(stackEM); } } } -- cgit v1.2.3-55-g6feb