From b53dc0c4853c56694dda727793e5f6188de39dd8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Mar 2000 17:10:21 -0300 Subject: TAG_ARRAY -> TAG_TABLE --- lbuiltin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbuiltin.c') diff --git a/lbuiltin.c b/lbuiltin.c index 33421908..eadce4ec 100644 --- a/lbuiltin.c +++ b/lbuiltin.c @@ -1,5 +1,5 @@ /* -** $Id: lbuiltin.c,v 1.97 2000/03/24 17:26:08 roberto Exp roberto $ +** $Id: lbuiltin.c,v 1.98 2000/03/27 20:08:02 roberto Exp roberto $ ** Built-in functions ** See Copyright Notice in lua.h */ @@ -380,7 +380,7 @@ void luaB_tostring (lua_State *L) { case TAG_STRING: lua_pushobject(L, o); return; - case TAG_ARRAY: + case TAG_TABLE: sprintf(buff, "table: %p", o->value.a); break; case TAG_LCLOSURE: case TAG_CCLOSURE: -- cgit v1.2.3-55-g6feb