]> git.saurik.com Git - bison.git/blobdiff - src/symtab.h
* src/getargs.c (AS_FILE_NAME): New.
[bison.git] / src / symtab.h
index 4ebc4a1afea4f1fee3b9b142533164a8bdb156d0..c64e4079cbdb2c25e713c8f3b3e26360724d0ab6 100644 (file)
@@ -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;