diff options
Diffstat (limited to 'src/lua51/lstate.h')
-rw-r--r-- | src/lua51/lstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua51/lstate.h b/src/lua51/lstate.h index cb4244b..7a776bc 100644 --- a/src/lua51/lstate.h +++ b/src/lua51/lstate.h @@ -172,7 +172,7 @@ struct lua_State { int hookcount; lua_Hook hook; TValue l_gt; /* table of globals */ //全局表 _G global table - TValue env; /* temporary place for environments */ + TValue env; /* temporary place for environments */ // 协程私有的环境 GCObject *openupval; /* list of open upvalues in this stack */ GCObject *gclist; struct lua_longjmp *errorJmp; /* current error recover point */ |