diff options
Diffstat (limited to 'src/lua51/lobject.h')
| -rw-r--r-- | src/lua51/lobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua51/lobject.h b/src/lua51/lobject.h index 5d6df6c..157fb37 100644 --- a/src/lua51/lobject.h +++ b/src/lua51/lobject.h @@ -356,7 +356,7 @@ typedef struct LClosure { lu_byte isC; //c is c closure lu_byte nupvalues; //c number of upvalues GCObject *gclist; //c gclist? - struct Table *env //c 这个闭包的环境,在luaF_newLclosure设置 + struct Table *env //c 这个闭包的环境表,在luaF_newLclosure设置 */ struct Proto *p; // lua闭包的函数原型 UpVal *upvals[1]; // lua闭包的upvalue |
