aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lobject.h b/lobject.h
index ddcf609c..ea3511de 100644
--- a/lobject.h
+++ b/lobject.h
@@ -588,6 +588,10 @@ typedef struct UpVal {
588} UpVal; 588} UpVal;
589 589
590 590
591/* variant for "To Be Closed" upvalues */
592#define LUA_TUPVALTBC (LUA_TUPVAL | (1 << 4))
593
594
591#define ClosureHeader \ 595#define ClosureHeader \
592 CommonHeader; lu_byte nupvalues; GCObject *gclist 596 CommonHeader; lu_byte nupvalues; GCObject *gclist
593 597