aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-30 17:55:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-30 17:55:50 -0300
commit8f0f54ec3835f5d1637ae2720e2b4de6a177574a (patch)
tree8b925203df562cc955e71fef21dd607ac7e2469a /lgc.c
parent556a89e53751135f45d8dd1e84651461b67e1f81 (diff)
downloadlua-8f0f54ec3835f5d1637ae2720e2b4de6a177574a.tar.gz
lua-8f0f54ec3835f5d1637ae2720e2b4de6a177574a.tar.bz2
lua-8f0f54ec3835f5d1637ae2720e2b4de6a177574a.zip
name change
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lgc.c b/lgc.c
index 9adbc385..e1885570 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 1.44 2000/03/27 20:10:21 roberto Exp roberto $ 2** $Id: lgc.c,v 1.45 2000/03/29 20:19:20 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*/
@@ -102,10 +102,10 @@ static int markobject (lua_State *L, TObject *o) {
102 case TAG_TABLE: 102 case TAG_TABLE:
103 hashmark(L, avalue(o)); 103 hashmark(L, avalue(o));
104 break; 104 break;
105 case TAG_LCLOSURE: case TAG_LCLMARK: 105 case TAG_LCLOSURE: case TAG_LMARK:
106 protomark(L, clvalue(o)->f.l); 106 protomark(L, clvalue(o)->f.l);
107 /* go trhough */ 107 /* go trhough */
108 case TAG_CCLOSURE: case TAG_CCLMARK: 108 case TAG_CCLOSURE: case TAG_CMARK:
109 closuremark(L, clvalue(o)); 109 closuremark(L, clvalue(o));
110 break; 110 break;
111 default: break; /* numbers, etc */ 111 default: break; /* numbers, etc */