aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-18 09:08:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-18 09:08:10 -0300
commitaf70905246acfad225904b64d027e5b01c7b10eb (patch)
treeb6d62db411706f5317e1269aff90e05399cd51b8 /lstate.h
parentb95e46621873cfb460e1d11dcd153914d5d69f86 (diff)
downloadlua-af70905246acfad225904b64d027e5b01c7b10eb.tar.gz
lua-af70905246acfad225904b64d027e5b01c7b10eb.tar.bz2
lua-af70905246acfad225904b64d027e5b01c7b10eb.zip
no need to check whether libraries and host use the same kernel;
Lua should work correctly with several copies of the kernel
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 037b2be6..0e173b5b 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.158 2018/03/16 15:33:34 roberto Exp roberto $ 2** $Id: lstate.h,v 2.159 2018/06/15 19:31:22 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*/
@@ -181,7 +181,6 @@ typedef struct global_State {
181 struct lua_State *twups; /* list of threads with open upvalues */ 181 struct lua_State *twups; /* list of threads with open upvalues */
182 lua_CFunction panic; /* to be called in unprotected errors */ 182 lua_CFunction panic; /* to be called in unprotected errors */
183 struct lua_State *mainthread; 183 struct lua_State *mainthread;
184 const lua_Number *version; /* pointer to version number */
185 TString *memerrmsg; /* message for memory-allocation errors */ 184 TString *memerrmsg; /* message for memory-allocation errors */
186 TString *tmname[TM_N]; /* array with tag-method names */ 185 TString *tmname[TM_N]; /* array with tag-method names */
187 struct Table *mt[LUA_NUMTAGS]; /* metatables for basic types */ 186 struct Table *mt[LUA_NUMTAGS]; /* metatables for basic types */