diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-04 16:52:23 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-04 16:52:23 -0200 |
commit | fe595a45c246faf2cf12084e7aac4b772f8f72da (patch) | |
tree | 1f2c3b54cf225f90ef4d3010c8861173d8620810 /lstate.c | |
parent | 9db1942bac5fb509c6e46ccc825351a6be546792 (diff) | |
download | lua-fe595a45c246faf2cf12084e7aac4b772f8f72da.tar.gz lua-fe595a45c246faf2cf12084e7aac4b772f8f72da.tar.bz2 lua-fe595a45c246faf2cf12084e7aac4b772f8f72da.zip |
`grayagain' list
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.c,v 1.132 2003/12/03 20:03:07 roberto Exp roberto $ | 2 | ** $Id: lstate.c,v 1.133 2003/12/04 17:22:42 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 | */ |
@@ -172,6 +172,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | |||
172 | g->currentwhite = bitmask(WHITE0BIT); | 172 | g->currentwhite = bitmask(WHITE0BIT); |
173 | g->firstudata = NULL; | 173 | g->firstudata = NULL; |
174 | g->gray = NULL; | 174 | g->gray = NULL; |
175 | g->grayagain = NULL; | ||
175 | g->weak = NULL; | 176 | g->weak = NULL; |
176 | g->tmudata = NULL; | 177 | g->tmudata = NULL; |
177 | setnilvalue(gkey(g->dummynode)); | 178 | setnilvalue(gkey(g->dummynode)); |