From b30ec2532c27c572e4fc0da61c8227f8f9e7be7b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 2 Jul 2002 13:43:28 -0300 Subject: [PATCH] details --- lstate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lstate.h b/lstate.h index edafe539..4a379e2c 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.84 2002/04/23 15:04:39 roberto Exp roberto $ +** $Id: lstate.h,v 1.85 2002/05/08 17:34:23 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -130,6 +130,8 @@ struct lua_State { CallInfo *end_ci; /* points after end of ci array*/ CallInfo *base_ci; /* array of CallInfo's */ global_State *l_G; + lua_Hook linehook; + lua_Hook callhook; TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */ struct lua_longjmp *errorJmp; /* current error recover point */ UpVal *openupval; /* list of open upvalues in this stack */ @@ -138,8 +140,6 @@ struct lua_State { int stacksize; int size_ci; /* size of array `base_ci' */ int allowhooks; - lua_Hook callhook; - lua_Hook linehook; };