summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
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 0af3cc31..c0ccb1e1 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.19 1999/05/11 20:08:20 roberto Exp roberto $ 2** $Id: lstate.h,v 1.20 1999/10/04 17:51:04 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*/
@@ -76,7 +76,7 @@ struct lua_State {
76 TProtoFunc *rootproto; /* list of all prototypes */ 76 TProtoFunc *rootproto; /* list of all prototypes */
77 Closure *rootcl; /* list of all closures */ 77 Closure *rootcl; /* list of all closures */
78 Hash *roottable; /* list of all tables */ 78 Hash *roottable; /* list of all tables */
79 TaggedString *rootglobal; /* list of strings with global values */ 79 GlobalVar *rootglobal; /* list of global variables */
80 stringtable *string_root; /* array of hash tables for strings and udata */ 80 stringtable *string_root; /* array of hash tables for strings and udata */
81 struct IM *IMtable; /* table for tag methods */ 81 struct IM *IMtable; /* table for tag methods */
82 int last_tag; /* last used tag in IMtable */ 82 int last_tag; /* last used tag in IMtable */