diff options
author | chai <chaifix@163.com> | 2019-10-10 09:00:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-10-10 09:00:08 +0800 |
commit | 48fb475ce59f8f5079f54e9731d75dd01f01e417 (patch) | |
tree | ad689b5016dec16e38f4b4b29460646f348c48ef /lobject.h | |
parent | 2980245830f2e198d61cab7a8b837dcf7971ab79 (diff) |
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |