summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-10-10 09:00:08 +0800
committerchai <chaifix@163.com>2019-10-10 09:00:08 +0800
commit48fb475ce59f8f5079f54e9731d75dd01f01e417 (patch)
treead689b5016dec16e38f4b4b29460646f348c48ef /lobject.h
parent2980245830f2e198d61cab7a8b837dcf7971ab79 (diff)
*updateHEADmaster
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;