summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-30 14:19:48 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-30 14:19:48 -0300
commit556a89e53751135f45d8dd1e84651461b67e1f81 (patch)
tree85c4d8486d53e534100c4b8c9ab30c6990585496 /lstate.h
parente2c60eda16d4aff7ea42513ba7c4d33ac45d9e99 (diff)
downloadlua-556a89e53751135f45d8dd1e84651461b67e1f81.tar.gz
lua-556a89e53751135f45d8dd1e84651461b67e1f81.tar.bz2
lua-556a89e53751135f45d8dd1e84651461b67e1f81.zip
new names for debug types
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index bda30bb9..d099e6aa 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.29 2000/02/08 16:34:31 roberto Exp roberto $ 2** $Id: lstate.h,v 1.30 2000/03/10 18:37:44 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*/
@@ -76,8 +76,8 @@ struct lua_State {
76 unsigned long GCthreshold; 76 unsigned long GCthreshold;
77 unsigned long nblocks; /* number of `blocks' currently allocated */ 77 unsigned long nblocks; /* number of `blocks' currently allocated */
78 int debug; 78 int debug;
79 lua_Dbghook callhook; 79 lua_Hook callhook;
80 lua_Dbghook linehook; 80 lua_Hook linehook;
81 int allowhooks; 81 int allowhooks;
82}; 82};
83 83