summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-26 14:07:49 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-26 14:07:49 -0300
commit712ac505e0d3fc06b328af3b773a9d2eecb3d190 (patch)
treec551b30d7ac06d281d50250690b4cc2f54ccc097
parentf935d3397ea56699d5ad218fade597514155e580 (diff)
downloadlua-github-712ac505e0d3fc06b328af3b773a9d2eecb3d190.tar.gz
small correction
-rw-r--r--tree.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tree.h b/tree.h
index c16d0b91..ebdad6e0 100644
--- a/tree.h
+++ b/tree.h
@@ -1,7 +1,7 @@
/*
** tree.h
** TecCGraf - PUC-Rio
-** $Id: tree.h,v 1.12 1996/02/12 18:32:40 roberto Exp roberto $
+** $Id: tree.h,v 1.13 1996/02/14 13:35:51 roberto Exp roberto $
*/
#ifndef tree_h
@@ -14,8 +14,8 @@
typedef struct TaggedString
{
- unsigned short varindex; /* != NOT_USED if this is a symbol */
- unsigned short constindex; /* != NOT_USED if this is a constant */
+ Word varindex; /* != NOT_USED if this is a symbol */
+ Word constindex; /* != NOT_USED if this is a constant */
unsigned long hash; /* 0 if not initialized */
int marked; /* for garbage collection; never collect (nor change) if > 1 */
char str[1]; /* \0 byte already reserved */