summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-31 17:58:11 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-31 17:58:11 -0200
commitaf59848219abcab589ac174c829102ed8a2adc8d (patch)
tree3deabe4b29f255013ae2fe83553ffa48f578d90d /lstate.h
parent46347d768e571ba9b36581c36d11d2de1dee2cfb (diff)
downloadlua-af59848219abcab589ac174c829102ed8a2adc8d.tar.gz
lua-af59848219abcab589ac174c829102ed8a2adc8d.tar.bz2
lua-af59848219abcab589ac174c829102ed8a2adc8d.zip
tables of globals accessible through pseudo-index in C API
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 4339d73d..4b4c60e7 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.61 2001/10/17 21:12:57 roberto Exp $ 2** $Id: lstate.h,v 1.62 2001/10/25 19:12:21 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*/
@@ -80,7 +80,7 @@ struct lua_State {
80 StkId top; /* first free slot in the stack */ 80 StkId top; /* first free slot in the stack */
81 CallInfo *ci; /* call info for current function */ 81 CallInfo *ci; /* call info for current function */
82 StkId stack_last; /* last free slot in the stack */ 82 StkId stack_last; /* last free slot in the stack */
83 Table *gt; /* table for globals */ 83 TObject gt; /* table for globals */
84 global_State *G; 84 global_State *G;
85 StkId stack; /* stack base */ 85 StkId stack; /* stack base */
86 int stacksize; 86 int stacksize;