소스 검색

small correction

Roberto Ierusalimschy 29 년 전
부모
커밋
712ac505e0
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      tree.h

+ 3 - 3
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 */