summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 45edd6c..344b670 100644
--- a/lobject.h
+++ b/lobject.h
@@ -558,7 +558,7 @@ typedef struct UpVal {
typedef struct CClosure {
ClosureHeader;
lua_CFunction f;
- // C闭包直接保存值,用index索引
+ // C闭包直接保存值,用index索引。C实现的闭包天生就是关闭的
TValue upvalue[1]; /* list of upvalues */
} CClosure;