summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-08 17:22:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-08 17:22:08 -0300
commit44752fc9ce2588a9b402d335c87660a9ee28a157 (patch)
tree824f78c6256f46d25dbeab117a5bfcca0bbfb67a /lstate.h
parent39b2d58c39fd0cd554b27ed071926bc439338964 (diff)
downloadlua-44752fc9ce2588a9b402d335c87660a9ee28a157.tar.gz
lua-44752fc9ce2588a9b402d335c87660a9ee28a157.tar.bz2
lua-44752fc9ce2588a9b402d335c87660a9ee28a157.zip
hook count is quadratic
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 4f3290ef..ef47de36 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.86 2002/07/02 16:43:28 roberto Exp roberto $ 2** $Id: lstate.h,v 1.87 2002/07/08 18:21:33 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*/
@@ -131,7 +131,7 @@ struct lua_State {
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 int hookmask; 133 int hookmask;
134 int hookcount; 134 ls_count hookcount;
135 lua_Hook hook; 135 lua_Hook hook;
136 TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */ 136 TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */
137 struct lua_longjmp *errorJmp; /* current error recover point */ 137 struct lua_longjmp *errorJmp; /* current error recover point */