summaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-08 17:42:07 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-08 17:42:07 -0300
commit0802a9df9e9326c5e61f0d6b69685c2c253de5f2 (patch)
treec0f34b8fbf79694ea3d5f9d98f14680ba74a2b14 /lstate.c
parentf90bc248b3c3c18941a96038b2a7517ad571d8b1 (diff)
downloadlua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.tar.gz
lua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.tar.bz2
lua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.zip
no more options for debug information: it is always on
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index 2d7de542..85357c00 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.29 2000/06/30 19:17:08 roberto Exp roberto $ 2** $Id: lstate.c,v 1.30 2000/08/04 19:38:35 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -52,7 +52,6 @@ lua_State *lua_newstate (int stacksize, int put_builtin) {
52 L->refFree = NONEXT; 52 L->refFree = NONEXT;
53 L->nblocks = 0; 53 L->nblocks = 0;
54 L->GCthreshold = MAX_INT; /* to avoid GC during pre-definitions */ 54 L->GCthreshold = MAX_INT; /* to avoid GC during pre-definitions */
55 L->debug = 0;
56 L->callhook = NULL; 55 L->callhook = NULL;
57 L->linehook = NULL; 56 L->linehook = NULL;
58 L->allowhooks = 1; 57 L->allowhooks = 1;