From 0802a9df9e9326c5e61f0d6b69685c2c253de5f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 8 Aug 2000 17:42:07 -0300 Subject: no more options for debug information: it is always on --- lstate.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.c') diff --git a/lstate.c b/lstate.c index 2d7de542..85357c00 100644 --- a/lstate.c +++ b/lstate.c @@ -1,5 +1,5 @@ /* -** $Id: lstate.c,v 1.29 2000/06/30 19:17:08 roberto Exp roberto $ +** $Id: lstate.c,v 1.30 2000/08/04 19:38:35 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -52,7 +52,6 @@ lua_State *lua_newstate (int stacksize, int put_builtin) { L->refFree = NONEXT; L->nblocks = 0; L->GCthreshold = MAX_INT; /* to avoid GC during pre-definitions */ - L->debug = 0; L->callhook = NULL; L->linehook = NULL; L->allowhooks = 1; -- cgit v1.2.3-55-g6feb