aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 04a81d3d..16202230 100644
--- a/lobject.h
+++ b/lobject.h
@@ -96,7 +96,8 @@ typedef struct TValue {
96/* 96/*
97** Any value being manipulated by the program either is non 97** Any value being manipulated by the program either is non
98** collectable, or the collectable object has the right tag 98** collectable, or the collectable object has the right tag
99** and it is not dead. 99** and it is not dead. The option 'L == NULL' allows other
100** macros using this one to be used where L is not available.
100*/ 101*/
101#define checkliveness(L,obj) \ 102#define checkliveness(L,obj) \
102 ((void)L, lua_longassert(!iscollectable(obj) || \ 103 ((void)L, lua_longassert(!iscollectable(obj) || \