From 916587508c117decb2f4d70677fa06be18803874 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sun, 11 Oct 2009 17:02:19 -0300 Subject: parser keeps list of active local variables in a single dynamic array, therefore saving C stack space --- ltests.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 40a7f965..4fb7a4d2 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.74 2009/09/30 20:49:25 roberto Exp roberto $ +** $Id: ltests.c,v 2.75 2009/10/05 16:44:33 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -491,7 +491,6 @@ static int get_limits (lua_State *L) { lua_createtable(L, 0, 5); setnameval(L, "BITS_INT", LUAI_BITSINT); setnameval(L, "LFPF", LFIELDS_PER_FLUSH); - setnameval(L, "MAXVARS", LUAI_MAXVARS); setnameval(L, "MAXSTACK", MAXSTACK); setnameval(L, "NUM_OPCODES", NUM_OPCODES); return 1; -- cgit v1.2.3-55-g6feb