X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/e41dc70020f5101795c601729594de8661d616e2..4ec8e00f609b4a44c3c9e5a25c82706b393a0e16:/src/symtab.h diff --git a/src/symtab.h b/src/symtab.h index 4ebc4a1a..c64e4079 100644 --- a/src/symtab.h +++ b/src/symtab.h @@ -42,9 +42,6 @@ typedef struct bucket struct bucket *link; struct bucket *next; - /* The line it was found in. */ - short line; - /* The key, name of the symbol. */ char *tag; /* Its type. */ @@ -53,13 +50,13 @@ typedef struct bucket short prec; associativity assoc; short user_token_number; + /* Points to the other in the identifier-symbol pair for an alias. Special value SALIAS in the identifier half of the identifier-symbol pair for an alias. */ struct bucket *alias; symbol_class class; -} -bucket; +} bucket; extern bucket *firstsymbol;