From af59848219abcab589ac174c829102ed8a2adc8d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 31 Oct 2001 17:58:11 -0200 Subject: tables of globals accessible through pseudo-index in C API --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 4339d73d..4b4c60e7 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.61 2001/10/17 21:12:57 roberto Exp $ +** $Id: lstate.h,v 1.62 2001/10/25 19:12:21 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -80,7 +80,7 @@ struct lua_State { StkId top; /* first free slot in the stack */ CallInfo *ci; /* call info for current function */ StkId stack_last; /* last free slot in the stack */ - Table *gt; /* table for globals */ + TObject gt; /* table for globals */ global_State *G; StkId stack; /* stack base */ int stacksize; -- cgit v1.2.3-55-g6feb