From 8ca9534d048782af13141874e0d2fec0d0f806af Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 8 Jun 2000 15:27:13 -0300 Subject: access to `values' in TObject always through macros --- lgc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lgc.c') diff --git a/lgc.c b/lgc.c index f1296cde..edb521ed 100644 --- a/lgc.c +++ b/lgc.c @@ -1,5 +1,5 @@ /* -** $Id: lgc.c,v 1.54 2000/06/05 14:56:18 roberto Exp roberto $ +** $Id: lgc.c,v 1.55 2000/06/05 20:07:53 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -96,7 +96,7 @@ static int markobject (lua_State *L, TObject *o) { strmark(L, tsvalue(o)); break; case TAG_TABLE: - tablemark(L, avalue(o)); + tablemark(L, hvalue(o)); break; case TAG_LCLOSURE: case TAG_LMARK: protomark(L, clvalue(o)->f.l); -- cgit v1.2.3-55-g6feb