diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-30 14:19:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-30 14:19:48 -0300 |
commit | 556a89e53751135f45d8dd1e84651461b67e1f81 (patch) | |
tree | 85c4d8486d53e534100c4b8c9ab30c6990585496 /lstate.h | |
parent | e2c60eda16d4aff7ea42513ba7c4d33ac45d9e99 (diff) | |
download | lua-556a89e53751135f45d8dd1e84651461b67e1f81.tar.gz lua-556a89e53751135f45d8dd1e84651461b67e1f81.tar.bz2 lua-556a89e53751135f45d8dd1e84651461b67e1f81.zip |
new names for debug types
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||