From b53dc0c4853c56694dda727793e5f6188de39dd8 Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 27 Mar 2000 17:10:21 -0300
Subject: TAG_ARRAY -> TAG_TABLE

---
 lref.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'lref.c')

diff --git a/lref.c b/lref.c
index b401a1b5..4cbe4b48 100644
--- a/lref.c
+++ b/lref.c
@@ -1,5 +1,5 @@
 /*
-** $Id: lref.c,v 1.8 2000/03/03 14:58:26 roberto Exp roberto $
+** $Id: lref.c,v 1.9 2000/03/10 18:37:44 roberto Exp roberto $
 ** reference mechanism
 ** See Copyright Notice in lua.h
 */
@@ -84,7 +84,7 @@ static int ismarked (const TObject *o) {
   switch (o->ttype) {
     case TAG_STRING: case TAG_USERDATA:
       return o->value.ts->marked;
-    case TAG_ARRAY:
+    case TAG_TABLE:
       return o->value.a->marked;
     case TAG_LCLOSURE:  case TAG_CCLOSURE:
       return o->value.cl->marked;
-- 
cgit v1.2.3-55-g6feb