diff options
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; |