diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-02 13:43:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-02 13:43:28 -0300 |
commit | b30ec2532c27c572e4fc0da61c8227f8f9e7be7b (patch) | |
tree | fb3e69bdb6e8ed0c8f6f3a0b8b20c703846cb3b9 | |
parent | 68ee518e816c87dbb376dc38d11d1b47dfe2b53e (diff) | |
download | lua-b30ec2532c27c572e4fc0da61c8227f8f9e7be7b.tar.gz lua-b30ec2532c27c572e4fc0da61c8227f8f9e7be7b.tar.bz2 lua-b30ec2532c27c572e4fc0da61c8227f8f9e7be7b.zip |
details
-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.84 2002/04/23 15:04:39 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.85 2002/05/08 17:34:23 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 | */ |
@@ -130,6 +130,8 @@ struct lua_State { | |||
130 | CallInfo *end_ci; /* points after end of ci array*/ | 130 | CallInfo *end_ci; /* points after end of ci array*/ |
131 | CallInfo *base_ci; /* array of CallInfo's */ | 131 | CallInfo *base_ci; /* array of CallInfo's */ |
132 | global_State *l_G; | 132 | global_State *l_G; |
133 | lua_Hook linehook; | ||
134 | lua_Hook callhook; | ||
133 | TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */ | 135 | TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */ |
134 | struct lua_longjmp *errorJmp; /* current error recover point */ | 136 | struct lua_longjmp *errorJmp; /* current error recover point */ |
135 | UpVal *openupval; /* list of open upvalues in this stack */ | 137 | UpVal *openupval; /* list of open upvalues in this stack */ |
@@ -138,8 +140,6 @@ struct lua_State { | |||
138 | int stacksize; | 140 | int stacksize; |
139 | int size_ci; /* size of array `base_ci' */ | 141 | int size_ci; /* size of array `base_ci' */ |
140 | int allowhooks; | 142 | int allowhooks; |
141 | lua_Hook callhook; | ||
142 | lua_Hook linehook; | ||
143 | }; | 143 | }; |
144 | 144 | ||
145 | 145 | ||