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 --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 0edd99f6..49b0f0d2 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ +** $Id: lobject.h,v 1.55 2000/03/24 19:49:23 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -35,7 +35,7 @@ typedef enum { TAG_USERDATA = 0, /* default tag for userdata */ TAG_NUMBER, /* fixed tag for numbers */ TAG_STRING, /* fixed tag for strings */ - TAG_ARRAY, /* default tag for tables (or arrays) */ + TAG_TABLE, /* default tag for tables */ TAG_LPROTO, /* fixed tag for Lua functions */ TAG_CPROTO, /* fixed tag for C functions */ TAG_NIL, /* last "pre-defined" tag */ @@ -67,7 +67,7 @@ typedef union { struct TString *ts; /* TAG_STRING, TAG_USERDATA */ struct Proto *tf; /* TAG_LPROTO, TAG_LMARK */ struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]CLMARK */ - struct Hash *a; /* TAG_ARRAY */ + struct Hash *a; /* TAG_TABLE */ int i; /* TAG_LINE */ } Value; -- cgit v1.2.3-55-g6feb