aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.h b/lgc.h
index 13563db3..cce4293b 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.66 2013/08/23 13:34:54 roberto Exp roberto $ 2** $Id: lgc.h,v 2.67 2013/08/27 18:53:35 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -77,7 +77,7 @@
77#define BLACKBIT 2 /* object is black */ 77#define BLACKBIT 2 /* object is black */
78#define FINALIZEDBIT 3 /* object has been marked for finalization */ 78#define FINALIZEDBIT 3 /* object has been marked for finalization */
79#define LOCALBIT 4 /* object is not local */ 79#define LOCALBIT 4 /* object is not local */
80#define LOCALBLACK 5 /* object is 'locally black' */ 80#define LOCALMARK 5 /* object is 'locally marked' or out of local list */
81/* bit 7 is currently used by tests (luaL_checkmemory) */ 81/* bit 7 is currently used by tests (luaL_checkmemory) */
82 82
83#define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT) 83#define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT)