summaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-17 13:25:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-17 13:25:13 -0300
commit79c8edb6c423b48270c1f61df6fd5a889ca5da0e (patch)
tree1b79c096472f5f799f5576561e831b0d992c8cd0 /lgc.c
parente5146fb01f1ccb40c2663e745feffbf642cbf862 (diff)
downloadlua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.tar.gz
lua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.tar.bz2
lua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.zip
new names for light userdata operations
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 991ff51d..47513769 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 1.141 2002/07/04 17:57:42 roberto Exp $ 2** $Id: lgc.c,v 1.142 2002/07/08 18:21:33 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*/
@@ -58,7 +58,7 @@ typedef struct GCState {
58 58
59#define ismarkable(o) (!((1 << ttype(o)) & \ 59#define ismarkable(o) (!((1 << ttype(o)) & \
60 ((1 << LUA_TNIL) | (1 << LUA_TNUMBER) | \ 60 ((1 << LUA_TNIL) | (1 << LUA_TNUMBER) | \
61 (1 << LUA_TBOOLEAN) | (1 << LUA_TUDATAVAL)))) 61 (1 << LUA_TBOOLEAN) | (1 << LUA_TLIGHTUSERDATA))))
62 62
63static void reallymarkobject (GCState *st, TObject *o); 63static void reallymarkobject (GCState *st, TObject *o);
64 64