aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-27 17:10:21 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-27 17:10:21 -0300
commitb53dc0c4853c56694dda727793e5f6188de39dd8 (patch)
treed574df00c35228687d2accd314c1065cf0f42bff /lobject.h
parent63e230a16bd030d11d041dfbec7a8a9bf0152b1e (diff)
downloadlua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.gz
lua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.bz2
lua-b53dc0c4853c56694dda727793e5f6188de39dd8.zip
TAG_ARRAY -> TAG_TABLE
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lobject.h b/lobject.h
index 0edd99f6..49b0f0d2 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ 2** $Id: lobject.h,v 1.55 2000/03/24 19:49:23 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -35,7 +35,7 @@ typedef enum {
35 TAG_USERDATA = 0, /* default tag for userdata */ 35 TAG_USERDATA = 0, /* default tag for userdata */
36 TAG_NUMBER, /* fixed tag for numbers */ 36 TAG_NUMBER, /* fixed tag for numbers */
37 TAG_STRING, /* fixed tag for strings */ 37 TAG_STRING, /* fixed tag for strings */
38 TAG_ARRAY, /* default tag for tables (or arrays) */ 38 TAG_TABLE, /* default tag for tables */
39 TAG_LPROTO, /* fixed tag for Lua functions */ 39 TAG_LPROTO, /* fixed tag for Lua functions */
40 TAG_CPROTO, /* fixed tag for C functions */ 40 TAG_CPROTO, /* fixed tag for C functions */
41 TAG_NIL, /* last "pre-defined" tag */ 41 TAG_NIL, /* last "pre-defined" tag */
@@ -67,7 +67,7 @@ typedef union {
67 struct TString *ts; /* TAG_STRING, TAG_USERDATA */ 67 struct TString *ts; /* TAG_STRING, TAG_USERDATA */
68 struct Proto *tf; /* TAG_LPROTO, TAG_LMARK */ 68 struct Proto *tf; /* TAG_LPROTO, TAG_LMARK */
69 struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]CLMARK */ 69 struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]CLMARK */
70 struct Hash *a; /* TAG_ARRAY */ 70 struct Hash *a; /* TAG_TABLE */
71 int i; /* TAG_LINE */ 71 int i; /* TAG_LINE */
72} Value; 72} Value;
73 73