summaryrefslogtreecommitdiff
path: root/src/lua51/lobject.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-01 14:35:21 +0800
committerchai <chaifix@163.com>2020-10-01 14:35:21 +0800
commitdc0e292e76a00fb43ad7fbdd6d65a560927ce981 (patch)
tree199b64a68eed6909733ab2b93cbe52c1e655f477 /src/lua51/lobject.h
parent63cb4fbbb961da133c68865845eaf22d9b876700 (diff)
*gc
Diffstat (limited to 'src/lua51/lobject.h')
-rw-r--r--src/lua51/lobject.h2
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