]> git.saurik.com Git - bison.git/blobdiff - src/parse-gram.c
Version 2.3a.
[bison.git] / src / parse-gram.c
index 00c39a5f7e522cda2ab7b4eeb67170b910579eca..fbc18b4e37b50de016f4f0feb053577593fc49da 100644 (file)
@@ -1,4 +1,4 @@
-/* A Bison parser, made by GNU Bison 2.1b.  */
+/* A Bison parser, made by GNU Bison 2.3+.  */
 
 /* Skeleton implementation for Bison's Yacc-like parsers in C
 
@@ -47,7 +47,7 @@
 #define YYBISON 1
 
 /* Bison version.  */
-#define YYBISON_VERSION "2.1b"
+#define YYBISON_VERSION "2.3+"
 
 /* Skeleton name.  */
 #define YYSKELETON_NAME "yacc.c"
 #define yynerrs gram_nerrs
 #define yylloc gram_lloc
 
-/* Tokens.  */
-#ifndef YYTOKENTYPE
-# define YYTOKENTYPE
-   /* Put the tokens into the symbol table, so that GDB and other debuggers
-      know about them.  */
-   enum yytokentype {
-     GRAM_EOF = 0,
-     STRING = 258,
-     INT = 259,
-     PERCENT_TOKEN = 260,
-     PERCENT_NTERM = 261,
-     PERCENT_TYPE = 262,
-     PERCENT_DESTRUCTOR = 263,
-     PERCENT_PRINTER = 264,
-     PERCENT_UNION = 265,
-     PERCENT_LEFT = 266,
-     PERCENT_RIGHT = 267,
-     PERCENT_NONASSOC = 268,
-     PERCENT_PREC = 269,
-     PERCENT_DPREC = 270,
-     PERCENT_MERGE = 271,
-     PERCENT_DEBUG = 272,
-     PERCENT_DEFAULT_PREC = 273,
-     PERCENT_DEFINE = 274,
-     PERCENT_DEFINES = 275,
-     PERCENT_ERROR_VERBOSE = 276,
-     PERCENT_EXPECT = 277,
-     PERCENT_EXPECT_RR = 278,
-     PERCENT_FILE_PREFIX = 279,
-     PERCENT_GLR_PARSER = 280,
-     PERCENT_INITIAL_ACTION = 281,
-     PERCENT_LEX_PARAM = 282,
-     PERCENT_LOCATIONS = 283,
-     PERCENT_NAME_PREFIX = 284,
-     PERCENT_NO_DEFAULT_PREC = 285,
-     PERCENT_NO_LINES = 286,
-     PERCENT_NONDETERMINISTIC_PARSER = 287,
-     PERCENT_OUTPUT = 288,
-     PERCENT_PARSE_PARAM = 289,
-     PERCENT_PURE_PARSER = 290,
-     PERCENT_REQUIRE = 291,
-     PERCENT_SKELETON = 292,
-     PERCENT_START = 293,
-     PERCENT_TOKEN_TABLE = 294,
-     PERCENT_VERBOSE = 295,
-     PERCENT_YACC = 296,
-     TYPE = 297,
-     EQUAL = 298,
-     SEMICOLON = 299,
-     PIPE = 300,
-     ID = 301,
-     ID_COLON = 302,
-     PERCENT_PERCENT = 303,
-     PROLOGUE = 304,
-     EPILOGUE = 305,
-     BRACED_CODE = 306
-   };
-#endif
-/* Tokens.  */
-#define GRAM_EOF 0
-#define STRING 258
-#define INT 259
-#define PERCENT_TOKEN 260
-#define PERCENT_NTERM 261
-#define PERCENT_TYPE 262
-#define PERCENT_DESTRUCTOR 263
-#define PERCENT_PRINTER 264
-#define PERCENT_UNION 265
-#define PERCENT_LEFT 266
-#define PERCENT_RIGHT 267
-#define PERCENT_NONASSOC 268
-#define PERCENT_PREC 269
-#define PERCENT_DPREC 270
-#define PERCENT_MERGE 271
-#define PERCENT_DEBUG 272
-#define PERCENT_DEFAULT_PREC 273
-#define PERCENT_DEFINE 274
-#define PERCENT_DEFINES 275
-#define PERCENT_ERROR_VERBOSE 276
-#define PERCENT_EXPECT 277
-#define PERCENT_EXPECT_RR 278
-#define PERCENT_FILE_PREFIX 279
-#define PERCENT_GLR_PARSER 280
-#define PERCENT_INITIAL_ACTION 281
-#define PERCENT_LEX_PARAM 282
-#define PERCENT_LOCATIONS 283
-#define PERCENT_NAME_PREFIX 284
-#define PERCENT_NO_DEFAULT_PREC 285
-#define PERCENT_NO_LINES 286
-#define PERCENT_NONDETERMINISTIC_PARSER 287
-#define PERCENT_OUTPUT 288
-#define PERCENT_PARSE_PARAM 289
-#define PERCENT_PURE_PARSER 290
-#define PERCENT_REQUIRE 291
-#define PERCENT_SKELETON 292
-#define PERCENT_START 293
-#define PERCENT_TOKEN_TABLE 294
-#define PERCENT_VERBOSE 295
-#define PERCENT_YACC 296
-#define TYPE 297
-#define EQUAL 298
-#define SEMICOLON 299
-#define PIPE 300
-#define ID 301
-#define ID_COLON 302
-#define PERCENT_PERCENT 303
-#define PROLOGUE 304
-#define EPILOGUE 305
-#define BRACED_CODE 306
-
-
-
-
 /* Copy the first part of user declarations.  */
-#line 1 "../../src/parse-gram.y"
+/* Line 164 of yacc.c.  */
+#line 1 "parse-gram.y"
 /* Bison Grammar Parser                             -*- C -*-
 
    Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 #include <config.h>
 #include "system.h"
 
+#include <strverscmp.h>
+
 #include "complain.h"
 #include "conflicts.h"
 #include "files.h"
 #include "symlist.h"
 #include "scan-gram.h"
 #include "scan-code.h"
-#include "strverscmp.h"
 
 #define YYLLOC_DEFAULT(Current, Rhs, N)  (Current) = lloc_default (Rhs, N)
 static YYLTYPE lloc_default (YYLTYPE const *, int);
@@ -236,26 +125,27 @@ static void version_check (location const *loc, char const *version);
        gram_error (&yylloc, Msg)
 static void gram_error (location const *, char const *);
 
-static void add_param (char const *, char *, location);
+static char const *char_name (char);
+
+/** Add a lex-param or a parse-param.
+ *
+ * \param type  \a lex_param or \a parse_param
+ * \param decl  the formal argument
+ * \param loc   the location in the source.
+ */
+static void add_param (char const *type, char *decl, location loc);
+
 
 static symbol_class current_class = unknown_sym;
-static uniqstr current_type = 0;
+static uniqstr current_type = NULL;
 static symbol *current_lhs;
 static location current_lhs_location;
 static int current_prec = 0;
 
-#ifdef UINT_FAST8_MAX
-# define YYTYPE_UINT8 uint_fast8_t
-#endif
-#ifdef INT_FAST8_MAX
-# define YYTYPE_INT8 int_fast8_t
-#endif
-#ifdef UINT_FAST16_MAX
-# define YYTYPE_UINT16 uint_fast16_t
-#endif
-#ifdef INT_FAST16_MAX
-# define YYTYPE_INT16 int_fast16_t
-#endif
+#define YYTYPE_INT16 int_fast16_t
+#define YYTYPE_INT8 int_fast8_t
+#define YYTYPE_UINT16 uint_fast16_t
+#define YYTYPE_UINT8 uint_fast8_t
 
 
 /* Enabling traces.  */
@@ -276,23 +166,151 @@ static int current_prec = 0;
 # define YYTOKEN_TABLE 0
 #endif
 
+
+/* Tokens.  */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+   /* Put the tokens into the symbol table, so that GDB and other debuggers
+      know about them.  */
+   enum yytokentype {
+     GRAM_EOF = 0,
+     STRING = 258,
+     INT = 259,
+     PERCENT_TOKEN = 260,
+     PERCENT_NTERM = 261,
+     PERCENT_TYPE = 262,
+     PERCENT_DESTRUCTOR = 263,
+     PERCENT_PRINTER = 264,
+     PERCENT_SYMBOL_DEFAULT = 265,
+     PERCENT_LEFT = 266,
+     PERCENT_RIGHT = 267,
+     PERCENT_NONASSOC = 268,
+     PERCENT_PREC = 269,
+     PERCENT_DPREC = 270,
+     PERCENT_MERGE = 271,
+     PERCENT_AFTER_HEADER = 272,
+     PERCENT_BEFORE_HEADER = 273,
+     PERCENT_DEBUG = 274,
+     PERCENT_DEFAULT_PREC = 275,
+     PERCENT_DEFINE = 276,
+     PERCENT_DEFINES = 277,
+     PERCENT_END_HEADER = 278,
+     PERCENT_ERROR_VERBOSE = 279,
+     PERCENT_EXPECT = 280,
+     PERCENT_EXPECT_RR = 281,
+     PERCENT_FILE_PREFIX = 282,
+     PERCENT_GLR_PARSER = 283,
+     PERCENT_INITIAL_ACTION = 284,
+     PERCENT_LEX_PARAM = 285,
+     PERCENT_LOCATIONS = 286,
+     PERCENT_NAME_PREFIX = 287,
+     PERCENT_NO_DEFAULT_PREC = 288,
+     PERCENT_NO_LINES = 289,
+     PERCENT_NONDETERMINISTIC_PARSER = 290,
+     PERCENT_OUTPUT = 291,
+     PERCENT_PARSE_PARAM = 292,
+     PERCENT_PURE_PARSER = 293,
+     PERCENT_REQUIRE = 294,
+     PERCENT_SKELETON = 295,
+     PERCENT_START = 296,
+     PERCENT_START_HEADER = 297,
+     PERCENT_TOKEN_TABLE = 298,
+     PERCENT_VERBOSE = 299,
+     PERCENT_YACC = 300,
+     BRACED_CODE = 301,
+     CHAR = 302,
+     EPILOGUE = 303,
+     EQUAL = 304,
+     ID = 305,
+     ID_COLON = 306,
+     PERCENT_PERCENT = 307,
+     PIPE = 308,
+     PROLOGUE = 309,
+     SEMICOLON = 310,
+     TYPE = 311,
+     PERCENT_UNION = 312
+   };
+#endif
+/* Tokens.  */
+#define GRAM_EOF 0
+#define STRING 258
+#define INT 259
+#define PERCENT_TOKEN 260
+#define PERCENT_NTERM 261
+#define PERCENT_TYPE 262
+#define PERCENT_DESTRUCTOR 263
+#define PERCENT_PRINTER 264
+#define PERCENT_SYMBOL_DEFAULT 265
+#define PERCENT_LEFT 266
+#define PERCENT_RIGHT 267
+#define PERCENT_NONASSOC 268
+#define PERCENT_PREC 269
+#define PERCENT_DPREC 270
+#define PERCENT_MERGE 271
+#define PERCENT_AFTER_HEADER 272
+#define PERCENT_BEFORE_HEADER 273
+#define PERCENT_DEBUG 274
+#define PERCENT_DEFAULT_PREC 275
+#define PERCENT_DEFINE 276
+#define PERCENT_DEFINES 277
+#define PERCENT_END_HEADER 278
+#define PERCENT_ERROR_VERBOSE 279
+#define PERCENT_EXPECT 280
+#define PERCENT_EXPECT_RR 281
+#define PERCENT_FILE_PREFIX 282
+#define PERCENT_GLR_PARSER 283
+#define PERCENT_INITIAL_ACTION 284
+#define PERCENT_LEX_PARAM 285
+#define PERCENT_LOCATIONS 286
+#define PERCENT_NAME_PREFIX 287
+#define PERCENT_NO_DEFAULT_PREC 288
+#define PERCENT_NO_LINES 289
+#define PERCENT_NONDETERMINISTIC_PARSER 290
+#define PERCENT_OUTPUT 291
+#define PERCENT_PARSE_PARAM 292
+#define PERCENT_PURE_PARSER 293
+#define PERCENT_REQUIRE 294
+#define PERCENT_SKELETON 295
+#define PERCENT_START 296
+#define PERCENT_START_HEADER 297
+#define PERCENT_TOKEN_TABLE 298
+#define PERCENT_VERBOSE 299
+#define PERCENT_YACC 300
+#define BRACED_CODE 301
+#define CHAR 302
+#define EPILOGUE 303
+#define EQUAL 304
+#define ID 305
+#define ID_COLON 306
+#define PERCENT_PERCENT 307
+#define PIPE 308
+#define PROLOGUE 309
+#define SEMICOLON 310
+#define TYPE 311
+#define PERCENT_UNION 312
+
+
+
+
 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 typedef union YYSTYPE
-#line 95 "../../src/parse-gram.y"
-{
+{/* Line 198 of yacc.c.  */
+#line 98 "parse-gram.y"
+
   symbol *symbol;
   symbol_list *list;
   int integer;
   char *chars;
   assoc assoc;
   uniqstr uniqstr;
+  unsigned char character;
 }
-/* Line 193 of yacc.c.  */
-#line 292 "../../src/parse-gram.c"
+/* Line 198 of yacc.c.  */
+#line 310 "parse-gram.c"
        YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
 # define YYSTYPE_IS_DECLARED 1
-# define YYSTYPE_IS_TRIVIAL 1
 #endif
 
 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
@@ -311,9 +329,8 @@ typedef struct YYLTYPE
 
 /* Copy the second part of user declarations.  */
 
-
-/* Line 216 of yacc.c.  */
-#line 317 "../../src/parse-gram.c"
+/* Line 221 of yacc.c.  */
+#line 334 "parse-gram.c"
 
 #ifdef short
 # undef short
@@ -388,14 +405,14 @@ typedef short int yytype_int16;
 #if (defined __STDC__ || defined __C99__FUNC__ \
      || defined __cplusplus || defined _MSC_VER)
 static int
-YYID (int i)
+YYID (int yyi)
 #else
 static int
-YYID (i)
-    int i;
+YYID (yyi)
+    int yyi;
 #endif
 {
-  return i;
+  return yyi;
 }
 #endif
 
@@ -530,20 +547,20 @@ union yyalloc
 /* YYFINAL -- State number of the termination state.  */
 #define YYFINAL  3
 /* YYLAST -- Last index in YYTABLE.  */
-#define YYLAST   164
+#define YYLAST   195
 
 /* YYNTOKENS -- Number of terminals.  */
-#define YYNTOKENS  52
+#define YYNTOKENS  58
 /* YYNNTS -- Number of nonterminals.  */
-#define YYNNTS  24
+#define YYNNTS  31
 /* YYNRULES -- Number of rules.  */
-#define YYNRULES  80
+#define YYNRULES  97
 /* YYNRULES -- Number of states.  */
-#define YYNSTATES  114
+#define YYNSTATES  136
 
 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
 #define YYUNDEFTOK  2
-#define YYMAXUTOK   306
+#define YYMAXUTOK   312
 
 #define YYTRANSLATE(YYX)                                               \
   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
@@ -581,7 +598,8 @@ static const yytype_uint8 yytranslate[] =
       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
       35,    36,    37,    38,    39,    40,    41,    42,    43,    44,
-      45,    46,    47,    48,    49,    50,    51
+      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
+      55,    56,    57
 };
 
 #if YYDEBUG
@@ -589,55 +607,61 @@ static const yytype_uint8 yytranslate[] =
    YYRHS.  */
 static const yytype_uint8 yyprhs[] =
 {
-       0,     0,     3,     8,     9,    12,    14,    16,    18,    21,
-      25,    27,    29,    32,    35,    39,    41,    44,    47,    49,
-      53,    55,    57,    61,    64,    66,    69,    72,    74,    76,
-      78,    80,    82,    84,    87,    89,    93,    97,    99,   101,
-     102,   106,   107,   111,   115,   119,   121,   123,   125,   126,
-     128,   130,   133,   135,   137,   140,   143,   147,   149,   152,
-     154,   157,   159,   162,   165,   166,   170,   172,   176,   179,
-     180,   183,   186,   190,   194,   198,   200,   202,   204,   206,
-     207
+       0,     0,     3,     8,     9,    12,    14,    16,    19,    22,
+      24,    28,    30,    33,    35,    38,    41,    45,    47,    50,
+      53,    55,    59,    61,    63,    67,    70,    72,    75,    78,
+      81,    83,    85,    87,    89,    91,    93,    96,   100,   104,
+     106,   108,   109,   111,   115,   116,   120,   121,   125,   129,
+     133,   135,   137,   139,   140,   142,   144,   147,   149,   152,
+     154,   156,   158,   160,   162,   165,   168,   172,   174,   177,
+     179,   182,   184,   187,   190,   191,   195,   197,   201,   204,
+     205,   208,   211,   215,   219,   223,   225,   227,   228,   230,
+     232,   234,   236,   238,   240,   242,   244,   245
 };
 
 /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
 static const yytype_int8 yyrhs[] =
 {
-      53,     0,    -1,    54,    48,    66,    75,    -1,    -1,    54,
-      55,    -1,    56,    -1,    49,    -1,    17,    -1,    19,    74,
-      -1,    19,    74,    74,    -1,    20,    -1,    21,    -1,    22,
-       4,    -1,    23,     4,    -1,    24,    43,    74,    -1,    25,
-      -1,    26,    51,    -1,    27,    51,    -1,    28,    -1,    29,
-      43,    74,    -1,    31,    -1,    32,    -1,    33,    43,    74,
-      -1,    34,    51,    -1,    35,    -1,    36,    74,    -1,    37,
-      74,    -1,    39,    -1,    40,    -1,    41,    -1,    44,    -1,
-      60,    -1,    57,    -1,    38,    72,    -1,    10,    -1,     8,
-      51,    63,    -1,     9,    51,    63,    -1,    18,    -1,    30,
-      -1,    -1,     6,    58,    65,    -1,    -1,     5,    59,    65,
-      -1,     7,    42,    63,    -1,    61,    62,    63,    -1,    11,
-      -1,    12,    -1,    13,    -1,    -1,    42,    -1,    72,    -1,
-      63,    72,    -1,    42,    -1,    46,    -1,    46,     4,    -1,
-      46,    73,    -1,    46,     4,    73,    -1,    64,    -1,    65,
-      64,    -1,    67,    -1,    66,    67,    -1,    68,    -1,    56,
-      44,    -1,     1,    44,    -1,    -1,    47,    69,    70,    -1,
-      71,    -1,    70,    45,    71,    -1,    70,    44,    -1,    -1,
-      71,    72,    -1,    71,    51,    -1,    71,    14,    72,    -1,
-      71,    15,     4,    -1,    71,    16,    42,    -1,    46,    -1,
-      73,    -1,     3,    -1,     3,    -1,    -1,    48,    50,    -1
+      59,     0,    -1,    60,    52,    75,    88,    -1,    -1,    60,
+      61,    -1,    62,    -1,    54,    -1,    17,    83,    -1,    18,
+      83,    -1,    19,    -1,    21,     3,    82,    -1,    22,    -1,
+      23,    83,    -1,    24,    -1,    25,     4,    -1,    26,     4,
+      -1,    27,    49,     3,    -1,    28,    -1,    29,    46,    -1,
+      30,    46,    -1,    31,    -1,    32,    49,     3,    -1,    34,
+      -1,    35,    -1,    36,    49,     3,    -1,    37,    46,    -1,
+      38,    -1,    39,     3,    -1,    40,     3,    -1,    42,    83,
+      -1,    43,    -1,    44,    -1,    45,    -1,    55,    -1,    67,
+      -1,    64,    -1,    41,    86,    -1,     8,    46,    71,    -1,
+       9,    46,    71,    -1,    20,    -1,    33,    -1,    -1,    50,
+      -1,    57,    63,    46,    -1,    -1,     6,    65,    74,    -1,
+      -1,     5,    66,    74,    -1,     7,    56,    70,    -1,    68,
+      69,    70,    -1,    11,    -1,    12,    -1,    13,    -1,    -1,
+      56,    -1,    86,    -1,    70,    86,    -1,    72,    -1,    71,
+      72,    -1,    86,    -1,    56,    -1,    10,    -1,    56,    -1,
+      84,    -1,    84,     4,    -1,    84,    87,    -1,    84,     4,
+      87,    -1,    73,    -1,    74,    73,    -1,    76,    -1,    75,
+      76,    -1,    77,    -1,    62,    55,    -1,     1,    55,    -1,
+      -1,    85,    78,    79,    -1,    80,    -1,    79,    53,    80,
+      -1,    79,    55,    -1,    -1,    80,    86,    -1,    80,    46,
+      -1,    80,    14,    86,    -1,    80,    15,     4,    -1,    80,
+      16,    56,    -1,     3,    -1,    83,    -1,    -1,    81,    -1,
+      46,    -1,    50,    -1,    47,    -1,    51,    -1,    84,    -1,
+      87,    -1,     3,    -1,    -1,    52,    48,    -1
 };
 
 /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
 static const yytype_uint16 yyrline[] =
 {
-       0,   194,   194,   202,   204,   208,   209,   211,   212,   217,
-     218,   219,   220,   221,   222,   223,   228,   232,   233,   234,
-     235,   236,   237,   238,   239,   240,   241,   242,   243,   244,
-     245,   249,   250,   251,   255,   271,   279,   287,   291,   298,
-     298,   303,   303,   308,   318,   333,   334,   335,   339,   340,
-     345,   346,   351,   355,   360,   366,   372,   383,   384,   393,
-     394,   400,   401,   402,   409,   409,   413,   414,   415,   420,
-     421,   423,   426,   428,   430,   435,   436,   441,   450,   455,
-     457
+       0,   208,   208,   216,   218,   222,   223,   224,   225,   226,
+     227,   228,   229,   230,   231,   232,   233,   234,   239,   243,
+     244,   245,   246,   247,   248,   249,   250,   251,   252,   253,
+     254,   255,   256,   257,   261,   262,   263,   267,   275,   283,
+     287,   301,   302,   306,   334,   334,   339,   339,   344,   355,
+     370,   371,   372,   376,   377,   382,   384,   389,   390,   394,
+     395,   396,   401,   406,   411,   417,   423,   434,   435,   444,
+     445,   451,   452,   453,   460,   460,   464,   465,   466,   471,
+     472,   474,   476,   478,   480,   490,   491,   497,   501,   506,
+     522,   524,   533,   538,   539,   544,   551,   553
 };
 #endif
 
@@ -648,23 +672,26 @@ static const char *const yytname[] =
 {
   "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
   "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"",
-  "\"%printer\"", "\"%union {...}\"", "\"%left\"", "\"%right\"",
-  "\"%nonassoc\"", "\"%prec\"", "\"%dprec\"", "\"%merge\"", "\"%debug\"",
-  "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"",
-  "\"%expect\"", "\"%expect-rr\"", "\"%file-prefix\"", "\"%glr-parser\"",
-  "\"%initial-action\"", "\"%lex-param\"", "\"%locations\"",
-  "\"%name-prefix\"", "\"%no-default-prec\"", "\"%no-lines\"",
-  "\"%nondeterministic-parser\"", "\"%output\"", "\"%parse-param\"",
-  "\"%pure-parser\"", "\"%require\"", "\"%skeleton\"", "\"%start\"",
-  "\"%token-table\"", "\"%verbose\"", "\"%yacc\"", "\"type\"", "\"=\"",
-  "\";\"", "\"|\"", "\"identifier\"", "\"identifier:\"", "\"%%\"",
-  "\"%{...%}\"", "\"epilogue\"", "\"{...}\"", "$accept", "input",
-  "declarations", "declaration", "grammar_declaration",
-  "symbol_declaration", "@1", "@2", "precedence_declaration",
-  "precedence_declarator", "type.opt", "symbols.1", "symbol_def",
-  "symbol_defs.1", "grammar", "rules_or_grammar_declaration", "rules",
-  "@3", "rhses.1", "rhs", "symbol", "string_as_id", "string_content",
-  "epilogue.opt", 0
+  "\"%printer\"", "\"%symbol-default\"", "\"%left\"", "\"%right\"",
+  "\"%nonassoc\"", "\"%prec\"", "\"%dprec\"", "\"%merge\"",
+  "\"%after-header\"", "\"%before-header\"", "\"%debug\"",
+  "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%end-header\"",
+  "\"%error-verbose\"", "\"%expect\"", "\"%expect-rr\"",
+  "\"%file-prefix\"", "\"%glr-parser\"", "\"%initial-action\"",
+  "\"%lex-param\"", "\"%locations\"", "\"%name-prefix\"",
+  "\"%no-default-prec\"", "\"%no-lines\"", "\"%nondeterministic-parser\"",
+  "\"%output\"", "\"%parse-param\"", "\"%pure-parser\"", "\"%require\"",
+  "\"%skeleton\"", "\"%start\"", "\"%start-header\"", "\"%token-table\"",
+  "\"%verbose\"", "\"%yacc\"", "\"{...}\"", "\"char\"", "\"epilogue\"",
+  "\"=\"", "\"identifier\"", "\"identifier:\"", "\"%%\"", "\"|\"",
+  "\"%{...%}\"", "\";\"", "\"type\"", "\"%union\"", "$accept", "input",
+  "prologue_declarations", "prologue_declaration", "grammar_declaration",
+  "union_name", "symbol_declaration", "@1", "@2", "precedence_declaration",
+  "precedence_declarator", "type.opt", "symbols.1", "generic_symlist",
+  "generic_symlist_item", "symbol_def", "symbol_defs.1", "grammar",
+  "rules_or_grammar_declaration", "rules", "@3", "rhses.1", "rhs",
+  "content", "content.opt", "braceless", "id", "id_colon", "symbol",
+  "string_as_id", "epilogue.opt", 0
 };
 #endif
 
@@ -678,36 +705,38 @@ static const yytype_uint16 yytoknum[] =
      275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
      285,   286,   287,   288,   289,   290,   291,   292,   293,   294,
      295,   296,   297,   298,   299,   300,   301,   302,   303,   304,
-     305,   306
+     305,   306,   307,   308,   309,   310,   311,   312
 };
 # endif
 
 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
 static const yytype_uint8 yyr1[] =
 {
-       0,    52,    53,    54,    54,    55,    55,    55,    55,    55,
-      55,    55,    55,    55,    55,    55,    55,    55,    55,    55,
-      55,    55,    55,    55,    55,    55,    55,    55,    55,    55,
-      55,    56,    56,    56,    56,    56,    56,    56,    56,    58,
-      57,    59,    57,    57,    60,    61,    61,    61,    62,    62,
-      63,    63,    64,    64,    64,    64,    64,    65,    65,    66,
-      66,    67,    67,    67,    69,    68,    70,    70,    70,    71,
-      71,    71,    71,    71,    71,    72,    72,    73,    74,    75,
-      75
+       0,    58,    59,    60,    60,    61,    61,    61,    61,    61,
+      61,    61,    61,    61,    61,    61,    61,    61,    61,    61,
+      61,    61,    61,    61,    61,    61,    61,    61,    61,    61,
+      61,    61,    61,    61,    62,    62,    62,    62,    62,    62,
+      62,    63,    63,    62,    65,    64,    66,    64,    64,    67,
+      68,    68,    68,    69,    69,    70,    70,    71,    71,    72,
+      72,    72,    73,    73,    73,    73,    73,    74,    74,    75,
+      75,    76,    76,    76,    78,    77,    79,    79,    79,    80,
+      80,    80,    80,    80,    80,    81,    81,    82,    82,    83,
+      84,    84,    85,    86,    86,    87,    88,    88
 };
 
 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
 static const yytype_uint8 yyr2[] =
 {
-       0,     2,     4,     0,     2,     1,     1,     1,     2,     3,
-       1,     1,     2,     2,     3,     1,     2,     2,     1,     3,
-       1,     1,     3,     2,     1,     2,     2,     1,     1,     1,
-       1,     1,     1,     2,     1,     3,     3,     1,     1,     0,
-       3,     0,     3,     3,     3,     1,     1,     1,     0,     1,
-       1,     2,     1,     1,     2,     2,     3,     1,     2,     1,
+       0,     2,     4,     0,     2,     1,     1,     2,     2,     1,
+       3,     1,     2,     1,     2,     2,     3,     1,     2,     2,
+       1,     3,     1,     1,     3,     2,     1,     2,     2,     2,
+       1,     1,     1,     1,     1,     1,     2,     3,     3,     1,
+       1,     0,     1,     3,     0,     3,     0,     3,     3,     3,
+       1,     1,     1,     0,     1,     1,     2,     1,     2,     1,
+       1,     1,     1,     1,     2,     2,     3,     1,     2,     1,
        2,     1,     2,     2,     0,     3,     1,     3,     2,     0,
-       2,     2,     3,     3,     3,     1,     1,     1,     1,     0,
-       2
+       2,     2,     3,     3,     3,     1,     1,     0,     1,     1,
+       1,     1,     1,     1,     1,     1,     0,     2
 };
 
 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
@@ -715,118 +744,132 @@ static const yytype_uint8 yyr2[] =
    means the default is an error.  */
 static const yytype_uint8 yydefact[] =
 {
-       3,     0,     0,     1,    41,    39,     0,     0,     0,    34,
-      45,    46,    47,     7,    37,     0,    10,    11,     0,     0,
-       0,    15,     0,     0,    18,     0,    38,    20,    21,     0,
-       0,    24,     0,     0,     0,    27,    28,    29,    30,     0,
-       6,     4,     5,    32,    31,    48,     0,     0,     0,     0,
-       0,    78,     8,    12,    13,     0,    16,    17,     0,     0,
-      23,    25,    26,    77,    75,    33,    76,     0,    64,     0,
-       0,    59,    61,    49,     0,    52,    53,    57,    42,    40,
-      43,    50,    35,    36,     9,    14,    19,    22,    63,    69,
-      62,     0,    60,     2,    44,    54,    55,    58,    51,    65,
-      66,    80,    56,    68,    69,     0,     0,     0,    71,    70,
-      67,    72,    73,    74
+       3,     0,     0,     1,    46,    44,     0,     0,     0,    50,
+      51,    52,     0,     0,     9,    39,     0,    11,     0,    13,
+       0,     0,     0,    17,     0,     0,    20,     0,    40,    22,
+      23,     0,     0,    26,     0,     0,     0,     0,    30,    31,
+      32,     0,     6,    33,    41,     4,     5,    35,    34,    53,
+       0,     0,     0,     0,     0,    89,     7,     8,    87,    12,
+      14,    15,     0,    18,    19,     0,     0,    25,    27,    28,
+      95,    91,    90,    93,    36,    94,    29,     0,    92,     0,
+       0,    69,    71,    74,    42,     0,    54,     0,    62,    67,
+      47,    63,    45,    48,    55,    61,    60,    37,    57,    59,
+      38,    85,    88,    10,    86,    16,    21,    24,    73,    72,
+       0,    70,     2,    79,    43,    49,    68,    64,    65,    56,
+      58,    97,    75,    76,    66,    79,    78,     0,     0,     0,
+      81,    80,    77,    82,    83,    84
 };
 
 /* YYDEFGOTO[NTERM-NUM].  */
 static const yytype_int8 yydefgoto[] =
 {
-      -1,     1,     2,    41,    69,    43,    47,    46,    44,    45,
-      74,    80,    77,    78,    70,    71,    72,    89,    99,   100,
-      81,    66,    52,    93
+      -1,     1,     2,    45,    79,    85,    47,    51,    50,    48,
+      49,    87,    93,    97,    98,    89,    90,    80,    81,    82,
+     113,   122,   123,   102,   103,    56,    73,    83,    99,    75,
+     112
 };
 
 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
    STATE-NUM.  */
-#define YYPACT_NINF -72
-static const yytype_int8 yypact[] =
+#define YYPACT_NINF -75
+static const yytype_int16 yypact[] =
 {
-     -72,     7,   115,   -72,   -72,   -72,   -22,   -17,   -16,   -72,
-     -72,   -72,   -72,   -72,   -72,    26,   -72,   -72,    32,    33,
-      -3,   -72,    -8,    -6,   -72,     4,   -72,   -72,   -72,     9,
-       2,   -72,    26,    26,    -2,   -72,   -72,   -72,   -72,    72,
-     -72,   -72,   -72,   -72,   -72,    12,   -40,   -40,    -2,    -2,
-      -2,   -72,    26,   -72,   -72,    26,   -72,   -72,    26,    26,
-     -72,   -72,   -72,   -72,   -72,   -72,   -72,    11,   -72,    13,
-       3,   -72,   -72,   -72,    -2,   -72,    19,   -72,   -40,   -40,
-      -2,   -72,    -2,    -2,   -72,   -72,   -72,   -72,   -72,   -72,
-     -72,    18,   -72,   -72,    -2,    53,   -72,   -72,   -72,   -19,
-      16,   -72,   -72,   -72,   -72,    -2,    55,    21,   -72,   -72,
-      16,   -72,   -72,   -72
+     -75,    18,   101,   -75,   -75,   -75,   -21,   -20,   -10,   -75,
+     -75,   -75,    -8,    -8,   -75,   -75,    37,   -75,    -8,   -75,
+      41,    44,     6,   -75,    -5,     3,   -75,     7,   -75,   -75,
+     -75,    10,    16,   -75,    61,    67,     0,    -8,   -75,   -75,
+     -75,    60,   -75,   -75,    13,   -75,   -75,   -75,   -75,    19,
+     -28,   -28,     0,    27,    27,   -75,   -75,   -75,     8,   -75,
+     -75,   -75,    73,   -75,   -75,    75,    78,   -75,   -75,   -75,
+     -75,   -75,   -75,   -75,   -75,   -75,   -75,    30,   -75,    31,
+       1,   -75,   -75,   -75,   -75,    36,   -75,     0,   -75,   -75,
+     -28,    29,   -28,     0,   -75,   -75,   -75,    27,   -75,   -75,
+      27,   -75,   -75,   -75,   -75,   -75,   -75,   -75,   -75,   -75,
+      40,   -75,   -75,   -75,   -75,     0,   -75,    81,   -75,   -75,
+     -75,   -75,   -30,   145,   -75,   -75,   -75,     0,    85,    34,
+     -75,   -75,   145,   -75,   -75,   -75
 };
 
 /* YYPGOTO[NTERM-NUM].  */
 static const yytype_int8 yypgoto[] =
 {
-     -72,   -72,   -72,   -72,    67,   -72,   -72,   -72,   -72,   -72,
-     -72,   -32,   -51,    23,   -72,     5,   -72,   -72,   -72,   -30,
-     -34,   -71,     6,   -72
+     -75,   -75,   -75,   -75,    90,   -75,   -75,   -75,   -75,   -75,
+     -75,   -75,    11,    43,   -73,   -61,    48,   -75,    14,   -75,
+     -75,   -75,   -25,   -75,   -75,     2,   -46,   -75,   -36,   -74,
+     -75
 };
 
 /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
    positive, shift that token.  If negative, reduce the rule which
    number is the opposite.  If zero, do what YYDEFACT says.
    If YYTABLE_NINF, syntax error.  */
-#define YYTABLE_NINF -80
-static const yytype_int8 yytable[] =
+#define YYTABLE_NINF -97
+static const yytype_int16 yytable[] =
 {
-      65,    63,    75,   -79,    67,    96,    76,     3,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    82,    83,    63,
-      48,    14,    63,    95,   102,   103,   104,    97,    97,    51,
-     105,   106,   107,    26,    49,    50,    53,    54,    61,    62,
-      55,    34,    94,    56,    64,    57,    98,    58,    98,    98,
-      68,    91,    59,    60,    73,    88,    63,    90,    84,   112,
-      98,    85,    64,   113,    86,    87,   109,   108,   101,    42,
-      79,   111,     0,    67,   110,    92,   109,     4,     5,     6,
-       7,     8,     9,    10,    11,    12,     0,     0,     0,     0,
-      14,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,    26,     0,     0,     0,     0,     0,     0,     0,
-      34,     0,     0,     0,     0,     0,     0,     0,     0,    68,
-       4,     5,     6,     7,     8,     9,    10,    11,    12,     0,
-       0,     0,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
-      31,    32,    33,    34,    35,    36,    37,     0,     0,    38,
-       0,     0,     0,    39,    40
+      74,   -96,    77,    70,    91,    91,     4,     5,     6,     7,
+       8,   101,     9,    10,    11,    57,    94,   118,     3,    71,
+      59,    15,    72,   125,   120,   126,    53,   120,    88,   116,
+      70,   116,    70,   117,    28,    52,    54,    95,    55,    76,
+      58,    63,    36,   124,    91,    60,    91,    71,    61,    64,
+      72,    94,    78,   110,    55,    62,    65,   119,    44,    66,
+     104,    77,    67,    84,    68,     4,     5,     6,     7,     8,
+      69,     9,    10,    11,    71,    86,   105,    72,   106,   119,
+      15,   107,   114,    96,    70,   108,   109,   131,   121,   134,
+     135,   133,    46,    28,   111,     0,   131,   100,   115,    92,
+     132,    36,     0,     0,     0,     0,     4,     5,     6,     7,
+       8,    78,     9,    10,    11,     0,     0,    44,    12,    13,
+      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
+      24,    25,    26,    27,    28,    29,    30,    31,    32,    33,
+      34,    35,    36,    37,    38,    39,    40,     0,    70,     0,
+       0,     0,     0,    41,     0,    42,    43,     0,    44,   127,
+     128,   129,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,   130,    71,     0,     0,    72
 };
 
-static const yytype_int8 yycheck[] =
+static const yytype_int16 yycheck[] =
 {
-      34,     3,    42,     0,     1,    76,    46,     0,     5,     6,
-       7,     8,     9,    10,    11,    12,    13,    49,    50,     3,
-      42,    18,     3,     4,    95,    44,    45,    78,    79,     3,
-      14,    15,    16,    30,    51,    51,     4,     4,    32,    33,
-      43,    38,    74,    51,    46,    51,    80,    43,    82,    83,
-      47,    48,    43,    51,    42,    44,     3,    44,    52,     4,
-      94,    55,    46,    42,    58,    59,   100,    51,    50,     2,
-      47,   105,    -1,     1,   104,    70,   110,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    -1,    -1,    -1,    -1,
-      18,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    30,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      38,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    47,
-       5,     6,     7,     8,     9,    10,    11,    12,    13,    -1,
-      -1,    -1,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
-      35,    36,    37,    38,    39,    40,    41,    -1,    -1,    44,
-      -1,    -1,    -1,    48,    49
+      36,     0,     1,     3,    50,    51,     5,     6,     7,     8,
+       9,     3,    11,    12,    13,    13,    52,    91,     0,    47,
+      18,    20,    50,    53,    97,    55,    46,   100,    56,    90,
+       3,    92,     3,     4,    33,    56,    46,    10,    46,    37,
+       3,    46,    41,   117,    90,     4,    92,    47,     4,    46,
+      50,    87,    51,    52,    46,    49,    49,    93,    57,    49,
+      58,     1,    46,    50,     3,     5,     6,     7,     8,     9,
+       3,    11,    12,    13,    47,    56,     3,    50,     3,   115,
+      20,     3,    46,    56,     3,    55,    55,   123,    48,     4,
+      56,   127,     2,    33,    80,    -1,   132,    54,    87,    51,
+     125,    41,    -1,    -1,    -1,    -1,     5,     6,     7,     8,
+       9,    51,    11,    12,    13,    -1,    -1,    57,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
+      29,    30,    31,    32,    33,    34,    35,    36,    37,    38,
+      39,    40,    41,    42,    43,    44,    45,    -1,     3,    -1,
+      -1,    -1,    -1,    52,    -1,    54,    55,    -1,    57,    14,
+      15,    16,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    46,    47,    -1,    -1,    50
 };
 
 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
    symbol of state STATE-NUM.  */
 static const yytype_uint8 yystos[] =
 {
-       0,    53,    54,     0,     5,     6,     7,     8,     9,    10,
-      11,    12,    13,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,    28,    29,    30,    31,    32,    33,
-      34,    35,    36,    37,    38,    39,    40,    41,    44,    48,
-      49,    55,    56,    57,    60,    61,    59,    58,    42,    51,
-      51,     3,    74,     4,     4,    43,    51,    51,    43,    43,
-      51,    74,    74,     3,    46,    72,    73,     1,    47,    56,
-      66,    67,    68,    42,    62,    42,    46,    64,    65,    65,
-      63,    72,    63,    63,    74,    74,    74,    74,    44,    69,
-      44,    48,    67,    75,    63,     4,    73,    64,    72,    70,
-      71,    50,    73,    44,    45,    14,    15,    16,    51,    72,
-      71,    72,     4,    42
+       0,    59,    60,     0,     5,     6,     7,     8,     9,    11,
+      12,    13,    17,    18,    19,    20,    21,    22,    23,    24,
+      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
+      35,    36,    37,    38,    39,    40,    41,    42,    43,    44,
+      45,    52,    54,    55,    57,    61,    62,    64,    67,    68,
+      66,    65,    56,    46,    46,    46,    83,    83,     3,    83,
+       4,     4,    49,    46,    46,    49,    49,    46,     3,     3,
+       3,    47,    50,    84,    86,    87,    83,     1,    51,    62,
+      75,    76,    77,    85,    50,    63,    56,    69,    56,    73,
+      74,    84,    74,    70,    86,    10,    56,    71,    72,    86,
+      71,     3,    81,    82,    83,     3,     3,     3,    55,    55,
+      52,    76,    88,    78,    46,    70,    73,     4,    87,    86,
+      72,    48,    79,    80,    87,    53,    55,    14,    15,    16,
+      46,    86,    80,    86,     4,    56
 };
 
 #define yyerrok                (yyerrstatus = 0)
@@ -975,64 +1018,116 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp)
   switch (yytype)
     {
       case 3: /* "\"string\"" */
-#line 175 "../../src/parse-gram.y"
-       { fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
-#line 981 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 186 "parse-gram.y"
+       { fputs (quotearg_style (c_quoting_style, (yyvaluep->chars)), stderr); };
+/* Line 670 of yacc.c.  */
+#line 1026 "parse-gram.c"
        break;
       case 4: /* "\"integer\"" */
-#line 184 "../../src/parse-gram.y"
+/* Line 670 of yacc.c.  */
+#line 197 "parse-gram.y"
        { fprintf (stderr, "%d", (yyvaluep->integer)); };
-#line 986 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1033 "parse-gram.c"
        break;
-      case 10: /* "\"%union {...}\"" */
-#line 177 "../../src/parse-gram.y"
+      case 46: /* "\"{...}\"" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
        { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
-#line 991 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1040 "parse-gram.c"
        break;
-      case 42: /* "\"type\"" */
-#line 182 "../../src/parse-gram.y"
-       { fprintf (stderr, "<%s>", (yyvaluep->uniqstr)); };
-#line 996 "../../src/parse-gram.c"
+      case 47: /* "\"char\"" */
+/* Line 670 of yacc.c.  */
+#line 181 "parse-gram.y"
+       { fputs (char_name ((yyvaluep->character)), stderr); };
+/* Line 670 of yacc.c.  */
+#line 1047 "parse-gram.c"
        break;
-      case 46: /* "\"identifier\"" */
-#line 186 "../../src/parse-gram.y"
-       { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
-#line 1001 "../../src/parse-gram.c"
+      case 48: /* "\"epilogue\"" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
+       { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
+/* Line 670 of yacc.c.  */
+#line 1054 "parse-gram.c"
        break;
-      case 47: /* "\"identifier:\"" */
-#line 188 "../../src/parse-gram.y"
-       { fprintf (stderr, "%s:", (yyvaluep->symbol)->tag); };
-#line 1006 "../../src/parse-gram.c"
+      case 50: /* "\"identifier\"" */
+/* Line 670 of yacc.c.  */
+#line 193 "parse-gram.y"
+       { fputs ((yyvaluep->uniqstr), stderr); };
+/* Line 670 of yacc.c.  */
+#line 1061 "parse-gram.c"
+       break;
+      case 51: /* "\"identifier:\"" */
+/* Line 670 of yacc.c.  */
+#line 194 "parse-gram.y"
+       { fprintf (stderr, "%s:", (yyvaluep->uniqstr)); };
+/* Line 670 of yacc.c.  */
+#line 1068 "parse-gram.c"
+       break;
+      case 54: /* "\"%{...%}\"" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
+       { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
+/* Line 670 of yacc.c.  */
+#line 1075 "parse-gram.c"
+       break;
+      case 56: /* "\"type\"" */
+/* Line 670 of yacc.c.  */
+#line 192 "parse-gram.y"
+       { fprintf (stderr, "<%s>", (yyvaluep->uniqstr)); };
+/* Line 670 of yacc.c.  */
+#line 1082 "parse-gram.c"
        break;
-      case 49: /* "\"%{...%}\"" */
-#line 177 "../../src/parse-gram.y"
+      case 81: /* "content" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
        { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
-#line 1011 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1089 "parse-gram.c"
        break;
-      case 50: /* "\"epilogue\"" */
-#line 177 "../../src/parse-gram.y"
+      case 82: /* "content.opt" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
        { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
-#line 1016 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1096 "parse-gram.c"
        break;
-      case 51: /* "\"{...}\"" */
-#line 177 "../../src/parse-gram.y"
+      case 83: /* "braceless" */
+/* Line 670 of yacc.c.  */
+#line 188 "parse-gram.y"
        { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
-#line 1021 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1103 "parse-gram.c"
        break;
-      case 72: /* "symbol" */
-#line 186 "../../src/parse-gram.y"
+      case 84: /* "id" */
+/* Line 670 of yacc.c.  */
+#line 200 "parse-gram.y"
        { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
-#line 1026 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1110 "parse-gram.c"
+       break;
+      case 85: /* "id_colon" */
+/* Line 670 of yacc.c.  */
+#line 201 "parse-gram.y"
+       { fprintf (stderr, "%s:", (yyvaluep->symbol)->tag); };
+/* Line 670 of yacc.c.  */
+#line 1117 "parse-gram.c"
        break;
-      case 73: /* "string_as_id" */
-#line 186 "../../src/parse-gram.y"
+      case 86: /* "symbol" */
+/* Line 670 of yacc.c.  */
+#line 200 "parse-gram.y"
        { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
-#line 1031 "../../src/parse-gram.c"
+/* Line 670 of yacc.c.  */
+#line 1124 "parse-gram.c"
        break;
-      case 74: /* "string_content" */
-#line 175 "../../src/parse-gram.y"
-       { fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
-#line 1036 "../../src/parse-gram.c"
+      case 87: /* "string_as_id" */
+/* Line 670 of yacc.c.  */
+#line 200 "parse-gram.y"
+       { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
+/* Line 670 of yacc.c.  */
+#line 1131 "parse-gram.c"
        break;
       default:
        break;
@@ -1076,17 +1171,20 @@ yy_symbol_print (yyoutput, yytype, yyvaluep, yylocationp)
 #if (defined __STDC__ || defined __C99__FUNC__ \
      || defined __cplusplus || defined _MSC_VER)
 static void
-yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
+yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
 #else
 static void
-yy_stack_print (bottom, top)
-    yytype_int16 *bottom;
-    yytype_int16 *top;
+yy_stack_print (yybottom, yytop)
+    yytype_int16 *yybottom;
+    yytype_int16 *yytop;
 #endif
 {
   YYFPRINTF (stderr, "Stack now");
-  for (; bottom <= top; ++bottom)
-    YYFPRINTF (stderr, " %d", *bottom);
+  for (; yybottom <= yytop; yybottom++)
+    {
+      int yybot = *yybottom;
+      YYFPRINTF (stderr, " %d", yybot);
+    }
   YYFPRINTF (stderr, "\n");
 }
 
@@ -1456,15 +1554,15 @@ yyparse ()
 #endif
 #endif
 {
-  /* The look-ahead symbol.  */
+  /* The lookahead symbol.  */
 int yychar;
 
-/* The semantic value of the look-ahead symbol.  */
+/* The semantic value of the lookahead symbol.  */
 YYSTYPE yylval;
 
 /* Number of syntax errors so far.  */
 int yynerrs;
-/* Location data for the look-ahead symbol.  */
+/* Location data for the lookahead symbol.  */
 YYLTYPE yylloc;
 
   int yystate;
@@ -1472,7 +1570,7 @@ YYLTYPE yylloc;
   int yyresult;
   /* Number of tokens to shift before error messages enabled.  */
   int yyerrstatus;
-  /* Look-ahead token as an internal (translated) token number.  */
+  /* Lookahead token as an internal (translated) token number.  */
   int yytoken = 0;
 #if YYERROR_VERBOSE
   /* Buffer for error messages, and its allocated size.  */
@@ -1537,20 +1635,21 @@ YYLTYPE yylloc;
 #if YYLTYPE_IS_TRIVIAL
   /* Initialize the default location before parsing starts.  */
   yylloc.first_line   = yylloc.last_line   = 1;
-  yylloc.first_column = yylloc.last_column = 0;
+  yylloc.first_column = yylloc.last_column = 1;
 #endif
 
 
   /* User initialization code.  */
-#line 86 "../../src/parse-gram.y"
+  /* Line 1082 of yacc.c.  */
+#line 89 "parse-gram.y"
 {
   /* Bison's grammar can initial empty locations, hence a default
      location is needed. */
-  boundary_set (&yylloc.start, current_file, 1, 0);
-  boundary_set (&yylloc.end, current_file, 1, 0);
+  boundary_set (&yylloc.start, current_file, 1, 1);
+  boundary_set (&yylloc.end, current_file, 1, 1);
 }
-/* Line 1078 of yacc.c.  */
-#line 1554 "../../src/parse-gram.c"
+/* Line 1082 of yacc.c.  */
+#line 1653 "parse-gram.c"
   yylsp[0] = yylloc;
   goto yysetstate;
 
@@ -1632,6 +1731,9 @@ YYLTYPE yylloc;
 
   YYDPRINTF ((stderr, "Entering state %d\n", yystate));
 
+  if (yystate == YYFINAL)
+    YYACCEPT;
+
   goto yybackup;
 
 /*-----------.
@@ -1640,16 +1742,16 @@ YYLTYPE yylloc;
 yybackup:
 
   /* Do appropriate processing given the current state.  Read a
-     look-ahead token if we need one and don't already have one.  */
+     lookahead token if we need one and don't already have one.  */
 
-  /* First try to decide what to do without reference to look-ahead token.  */
+  /* First try to decide what to do without reference to lookahead token.  */
   yyn = yypact[yystate];
   if (yyn == YYPACT_NINF)
     goto yydefault;
 
-  /* Not known => get a look-ahead token if don't already have one.  */
+  /* Not known => get a lookahead token if don't already have one.  */
 
-  /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol.  */
+  /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
   if (yychar == YYEMPTY)
     {
       YYDPRINTF ((stderr, "Reading a token: "));
@@ -1681,20 +1783,16 @@ yybackup:
       goto yyreduce;
     }
 
-  if (yyn == YYFINAL)
-    YYACCEPT;
-
   /* Count tokens shifted since error; after three, turn off error
      status.  */
   if (yyerrstatus)
     yyerrstatus--;
 
-  /* Shift the look-ahead token.  */
+  /* Shift the lookahead token.  */
   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
 
-  /* Discard the shifted token unless it is eof.  */
-  if (yychar != YYEOF)
-    yychar = YYEMPTY;
+  /* Discard the shifted token.  */
+  yychar = YYEMPTY;
 
   yystate = yyn;
   *++yyvsp = yylval;
@@ -1735,299 +1833,409 @@ yyreduce:
   switch (yyn)
     {
         case 6:
-#line 209 "../../src/parse-gram.y"
-    { prologue_augment (translate_code ((yyvsp[(1) - (1)].chars), (yylsp[(1) - (1)])),
-                                                      (yylsp[(1) - (1)])); }
+/* Line 1269 of yacc.c.  */
+#line 223 "parse-gram.y"
+    { prologue_augment (translate_code ((yyvsp[(1) - (1)].chars), (yylsp[(1) - (1)])), (yylsp[(1) - (1)]), union_seen); }
     break;
 
   case 7:
-#line 211 "../../src/parse-gram.y"
-    { debug_flag = true; }
+/* Line 1269 of yacc.c.  */
+#line 224 "parse-gram.y"
+    { prologue_augment ((yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)]), true); }
     break;
 
   case 8:
-#line 213 "../../src/parse-gram.y"
-    {
-      static char one[] = "1";
-      muscle_insert ((yyvsp[(2) - (2)].chars), one);
-    }
+/* Line 1269 of yacc.c.  */
+#line 225 "parse-gram.y"
+    { prologue_augment ((yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)]), false); }
     break;
 
   case 9:
-#line 217 "../../src/parse-gram.y"
-    { muscle_insert ((yyvsp[(2) - (3)].chars), (yyvsp[(3) - (3)].chars)); }
+/* Line 1269 of yacc.c.  */
+#line 226 "parse-gram.y"
+    { debug_flag = true; }
     break;
 
   case 10:
-#line 218 "../../src/parse-gram.y"
-    { defines_flag = true; }
+/* Line 1269 of yacc.c.  */
+#line 227 "parse-gram.y"
+    { muscle_insert ((yyvsp[(2) - (3)].chars), (yyvsp[(3) - (3)].chars)); }
     break;
 
   case 11:
-#line 219 "../../src/parse-gram.y"
-    { error_verbose = true; }
+/* Line 1269 of yacc.c.  */
+#line 228 "parse-gram.y"
+    { defines_flag = true; }
     break;
 
   case 12:
-#line 220 "../../src/parse-gram.y"
-    { expected_sr_conflicts = (yyvsp[(2) - (2)].integer); }
+/* Line 1269 of yacc.c.  */
+#line 229 "parse-gram.y"
+    { muscle_code_grow ("end_header", (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])); }
     break;
 
   case 13:
-#line 221 "../../src/parse-gram.y"
-    { expected_rr_conflicts = (yyvsp[(2) - (2)].integer); }
+/* Line 1269 of yacc.c.  */
+#line 230 "parse-gram.y"
+    { error_verbose = true; }
     break;
 
   case 14:
-#line 222 "../../src/parse-gram.y"
-    { spec_file_prefix = (yyvsp[(3) - (3)].chars); }
+/* Line 1269 of yacc.c.  */
+#line 231 "parse-gram.y"
+    { expected_sr_conflicts = (yyvsp[(2) - (2)].integer); }
     break;
 
   case 15:
-#line 224 "../../src/parse-gram.y"
+/* Line 1269 of yacc.c.  */
+#line 232 "parse-gram.y"
+    { expected_rr_conflicts = (yyvsp[(2) - (2)].integer); }
+    break;
+
+  case 16:
+/* Line 1269 of yacc.c.  */
+#line 233 "parse-gram.y"
+    { spec_file_prefix = (yyvsp[(3) - (3)].chars); }
+    break;
+
+  case 17:
+/* Line 1269 of yacc.c.  */
+#line 235 "parse-gram.y"
     {
       nondeterministic_parser = true;
       glr_parser = true;
     }
     break;
 
-  case 16:
-#line 229 "../../src/parse-gram.y"
+  case 18:
+/* Line 1269 of yacc.c.  */
+#line 240 "parse-gram.y"
     {
       muscle_code_grow ("initial_action", translate_symbol_action ((yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])), (yylsp[(2) - (2)]));
     }
     break;
 
-  case 17:
-#line 232 "../../src/parse-gram.y"
+  case 19:
+/* Line 1269 of yacc.c.  */
+#line 243 "parse-gram.y"
     { add_param ("lex_param", (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])); }
     break;
 
-  case 18:
-#line 233 "../../src/parse-gram.y"
+  case 20:
+/* Line 1269 of yacc.c.  */
+#line 244 "parse-gram.y"
     { locations_flag = true; }
     break;
 
-  case 19:
-#line 234 "../../src/parse-gram.y"
+  case 21:
+/* Line 1269 of yacc.c.  */
+#line 245 "parse-gram.y"
     { spec_name_prefix = (yyvsp[(3) - (3)].chars); }
     break;
 
-  case 20:
-#line 235 "../../src/parse-gram.y"
+  case 22:
+/* Line 1269 of yacc.c.  */
+#line 246 "parse-gram.y"
     { no_lines_flag = true; }
     break;
 
-  case 21:
-#line 236 "../../src/parse-gram.y"
+  case 23:
+/* Line 1269 of yacc.c.  */
+#line 247 "parse-gram.y"
     { nondeterministic_parser = true; }
     break;
 
-  case 22:
-#line 237 "../../src/parse-gram.y"
+  case 24:
+/* Line 1269 of yacc.c.  */
+#line 248 "parse-gram.y"
     { spec_outfile = (yyvsp[(3) - (3)].chars); }
     break;
 
-  case 23:
-#line 238 "../../src/parse-gram.y"
+  case 25:
+/* Line 1269 of yacc.c.  */
+#line 249 "parse-gram.y"
     { add_param ("parse_param", (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])); }
     break;
 
-  case 24:
-#line 239 "../../src/parse-gram.y"
+  case 26:
+/* Line 1269 of yacc.c.  */
+#line 250 "parse-gram.y"
     { pure_parser = true; }
     break;
 
-  case 25:
-#line 240 "../../src/parse-gram.y"
+  case 27:
+/* Line 1269 of yacc.c.  */
+#line 251 "parse-gram.y"
     { version_check (&(yylsp[(2) - (2)]), (yyvsp[(2) - (2)].chars)); }
     break;
 
-  case 26:
-#line 241 "../../src/parse-gram.y"
+  case 28:
+/* Line 1269 of yacc.c.  */
+#line 252 "parse-gram.y"
     { skeleton = (yyvsp[(2) - (2)].chars); }
     break;
 
-  case 27:
-#line 242 "../../src/parse-gram.y"
+  case 29:
+/* Line 1269 of yacc.c.  */
+#line 253 "parse-gram.y"
+    { muscle_code_grow ("start_header", (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])); }
+    break;
+
+  case 30:
+/* Line 1269 of yacc.c.  */
+#line 254 "parse-gram.y"
     { token_table_flag = true; }
     break;
 
-  case 28:
-#line 243 "../../src/parse-gram.y"
+  case 31:
+/* Line 1269 of yacc.c.  */
+#line 255 "parse-gram.y"
     { report_flag = report_states; }
     break;
 
-  case 29:
-#line 244 "../../src/parse-gram.y"
+  case 32:
+/* Line 1269 of yacc.c.  */
+#line 256 "parse-gram.y"
     { yacc_flag = true; }
     break;
 
-  case 33:
-#line 252 "../../src/parse-gram.y"
+  case 36:
+/* Line 1269 of yacc.c.  */
+#line 264 "parse-gram.y"
     {
       grammar_start_symbol_set ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)]));
     }
     break;
 
-  case 34:
-#line 256 "../../src/parse-gram.y"
-    {
-      char const *body = (yyvsp[(1) - (1)].chars);
-
-      if (typed)
-       {
-         /* Concatenate the union bodies, turning the first one's
-            trailing '}' into '\n', and omitting the second one's '{'.  */
-         char *code = muscle_find ("stype");
-         code[strlen (code) - 1] = '\n';
-         body++;
-       }
-
-      typed = true;
-      muscle_code_grow ("stype", body, (yylsp[(1) - (1)]));
-    }
-    break;
-
-  case 35:
-#line 272 "../../src/parse-gram.y"
+  case 37:
+/* Line 1269 of yacc.c.  */
+#line 268 "parse-gram.y"
     {
       symbol_list *list;
       const char *action = translate_symbol_action ((yyvsp[(2) - (3)].chars), (yylsp[(2) - (3)]));
       for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
-       symbol_destructor_set (list->sym, action, (yylsp[(2) - (3)]));
+        symbol_list_destructor_set (list, action, (yylsp[(2) - (3)]));
       symbol_list_free ((yyvsp[(3) - (3)].list));
     }
     break;
 
-  case 36:
-#line 280 "../../src/parse-gram.y"
+  case 38:
+/* Line 1269 of yacc.c.  */
+#line 276 "parse-gram.y"
     {
       symbol_list *list;
       const char *action = translate_symbol_action ((yyvsp[(2) - (3)].chars), (yylsp[(2) - (3)]));
       for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
-       symbol_printer_set (list->sym, action, (yylsp[(2) - (3)]));
+        symbol_list_printer_set (list, action, (yylsp[(2) - (3)]));
       symbol_list_free ((yyvsp[(3) - (3)].list));
     }
     break;
 
-  case 37:
-#line 288 "../../src/parse-gram.y"
+  case 39:
+/* Line 1269 of yacc.c.  */
+#line 284 "parse-gram.y"
     {
       default_prec = true;
     }
     break;
 
-  case 38:
-#line 292 "../../src/parse-gram.y"
+  case 40:
+/* Line 1269 of yacc.c.  */
+#line 288 "parse-gram.y"
     {
       default_prec = false;
     }
     break;
 
-  case 39:
-#line 298 "../../src/parse-gram.y"
+  case 41:
+/* Line 1269 of yacc.c.  */
+#line 301 "parse-gram.y"
+    {}
+    break;
+
+  case 42:
+/* Line 1269 of yacc.c.  */
+#line 302 "parse-gram.y"
+    { muscle_code_grow ("union_name", (yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
+    break;
+
+  case 43:
+/* Line 1269 of yacc.c.  */
+#line 307 "parse-gram.y"
+    {
+      char const *body = (yyvsp[(3) - (3)].chars);
+
+      /* Concatenate the %union bodies.  If this is the first %union, make sure
+        the synchronization line appears after the opening '{' so as not to
+        confuse Doxygen.  Otherwise, turn the previous %union's trailing '}'
+        into '\n', and omit the new %union's leading '{'.  */
+      if (!union_seen)
+       {
+         muscle_grow ("stype", "{", "");
+       }
+      else
+       {
+         char *code = muscle_find ("stype");
+         code[strlen (code) - 1] = '\n';
+       }
+      body++;
+
+      union_seen = true;
+      muscle_code_grow ("stype", body, (yylsp[(3) - (3)]));
+    }
+    break;
+
+  case 44:
+/* Line 1269 of yacc.c.  */
+#line 334 "parse-gram.y"
     { current_class = nterm_sym; }
     break;
 
-  case 40:
-#line 299 "../../src/parse-gram.y"
+  case 45:
+/* Line 1269 of yacc.c.  */
+#line 335 "parse-gram.y"
     {
       current_class = unknown_sym;
       current_type = NULL;
     }
     break;
 
-  case 41:
-#line 303 "../../src/parse-gram.y"
+  case 46:
+/* Line 1269 of yacc.c.  */
+#line 339 "parse-gram.y"
     { current_class = token_sym; }
     break;
 
-  case 42:
-#line 304 "../../src/parse-gram.y"
+  case 47:
+/* Line 1269 of yacc.c.  */
+#line 340 "parse-gram.y"
     {
       current_class = unknown_sym;
       current_type = NULL;
     }
     break;
 
-  case 43:
-#line 309 "../../src/parse-gram.y"
+  case 48:
+/* Line 1269 of yacc.c.  */
+#line 345 "parse-gram.y"
     {
+      tag_seen = true;
       symbol_list *list;
       for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
-       symbol_type_set (list->sym, (yyvsp[(2) - (3)].uniqstr), (yylsp[(2) - (3)]));
+       symbol_type_set (list->content.sym, (yyvsp[(2) - (3)].uniqstr), (yylsp[(2) - (3)]));
       symbol_list_free ((yyvsp[(3) - (3)].list));
     }
     break;
 
-  case 44:
-#line 319 "../../src/parse-gram.y"
+  case 49:
+/* Line 1269 of yacc.c.  */
+#line 356 "parse-gram.y"
     {
       symbol_list *list;
       ++current_prec;
       for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
        {
-         symbol_type_set (list->sym, current_type, (yylsp[(2) - (3)]));
-         symbol_precedence_set (list->sym, current_prec, (yyvsp[(1) - (3)].assoc), (yylsp[(1) - (3)]));
+         symbol_type_set (list->content.sym, current_type, (yylsp[(2) - (3)]));
+         symbol_precedence_set (list->content.sym, current_prec, (yyvsp[(1) - (3)].assoc), (yylsp[(1) - (3)]));
        }
       symbol_list_free ((yyvsp[(3) - (3)].list));
       current_type = NULL;
     }
     break;
 
-  case 45:
-#line 333 "../../src/parse-gram.y"
+  case 50:
+/* Line 1269 of yacc.c.  */
+#line 370 "parse-gram.y"
     { (yyval.assoc) = left_assoc; }
     break;
 
-  case 46:
-#line 334 "../../src/parse-gram.y"
+  case 51:
+/* Line 1269 of yacc.c.  */
+#line 371 "parse-gram.y"
     { (yyval.assoc) = right_assoc; }
     break;
 
-  case 47:
-#line 335 "../../src/parse-gram.y"
+  case 52:
+/* Line 1269 of yacc.c.  */
+#line 372 "parse-gram.y"
     { (yyval.assoc) = non_assoc; }
     break;
 
-  case 48:
-#line 339 "../../src/parse-gram.y"
+  case 53:
+/* Line 1269 of yacc.c.  */
+#line 376 "parse-gram.y"
     { current_type = NULL; }
     break;
 
-  case 49:
-#line 340 "../../src/parse-gram.y"
-    { current_type = (yyvsp[(1) - (1)].uniqstr); }
+  case 54:
+/* Line 1269 of yacc.c.  */
+#line 377 "parse-gram.y"
+    { current_type = (yyvsp[(1) - (1)].uniqstr); tag_seen = true; }
     break;
 
-  case 50:
-#line 345 "../../src/parse-gram.y"
-    { (yyval.list) = symbol_list_new ((yyvsp[(1) - (1)].symbol), (yylsp[(1) - (1)])); }
+  case 55:
+/* Line 1269 of yacc.c.  */
+#line 383 "parse-gram.y"
+    { (yyval.list) = symbol_list_sym_new ((yyvsp[(1) - (1)].symbol), (yylsp[(1) - (1)])); }
     break;
 
-  case 51:
-#line 346 "../../src/parse-gram.y"
-    { (yyval.list) = symbol_list_prepend ((yyvsp[(1) - (2)].list), (yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)])); }
+  case 56:
+/* Line 1269 of yacc.c.  */
+#line 385 "parse-gram.y"
+    { (yyval.list) = symbol_list_prepend ((yyvsp[(1) - (2)].list), symbol_list_sym_new ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)]))); }
     break;
 
-  case 52:
-#line 352 "../../src/parse-gram.y"
+  case 57:
+/* Line 1269 of yacc.c.  */
+#line 389 "parse-gram.y"
+    { (yyval.list) = (yyvsp[(1) - (1)].list); }
+    break;
+
+  case 58:
+/* Line 1269 of yacc.c.  */
+#line 390 "parse-gram.y"
+    { (yyval.list) = symbol_list_prepend ((yyvsp[(1) - (2)].list), (yyvsp[(2) - (2)].list)); }
+    break;
+
+  case 59:
+/* Line 1269 of yacc.c.  */
+#line 394 "parse-gram.y"
+    { (yyval.list) = symbol_list_sym_new ((yyvsp[(1) - (1)].symbol), (yylsp[(1) - (1)])); }
+    break;
+
+  case 60:
+/* Line 1269 of yacc.c.  */
+#line 395 "parse-gram.y"
+    { (yyval.list) = symbol_list_type_new ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
+    break;
+
+  case 61:
+/* Line 1269 of yacc.c.  */
+#line 396 "parse-gram.y"
+    { (yyval.list) = symbol_list_default_new ((yylsp[(1) - (1)])); }
+    break;
+
+  case 62:
+/* Line 1269 of yacc.c.  */
+#line 402 "parse-gram.y"
     {
        current_type = (yyvsp[(1) - (1)].uniqstr);
+       tag_seen = true;
      }
     break;
 
-  case 53:
-#line 356 "../../src/parse-gram.y"
+  case 63:
+/* Line 1269 of yacc.c.  */
+#line 407 "parse-gram.y"
     {
        symbol_class_set ((yyvsp[(1) - (1)].symbol), current_class, (yylsp[(1) - (1)]), true);
        symbol_type_set ((yyvsp[(1) - (1)].symbol), current_type, (yylsp[(1) - (1)]));
      }
     break;
 
-  case 54:
-#line 361 "../../src/parse-gram.y"
+  case 64:
+/* Line 1269 of yacc.c.  */
+#line 412 "parse-gram.y"
     {
       symbol_class_set ((yyvsp[(1) - (2)].symbol), current_class, (yylsp[(1) - (2)]), true);
       symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yylsp[(1) - (2)]));
@@ -2035,8 +2243,9 @@ yyreduce:
     }
     break;
 
-  case 55:
-#line 367 "../../src/parse-gram.y"
+  case 65:
+/* Line 1269 of yacc.c.  */
+#line 418 "parse-gram.y"
     {
       symbol_class_set ((yyvsp[(1) - (2)].symbol), current_class, (yylsp[(1) - (2)]), true);
       symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yylsp[(1) - (2)]));
@@ -2044,8 +2253,9 @@ yyreduce:
     }
     break;
 
-  case 56:
-#line 373 "../../src/parse-gram.y"
+  case 66:
+/* Line 1269 of yacc.c.  */
+#line 424 "parse-gram.y"
     {
       symbol_class_set ((yyvsp[(1) - (3)].symbol), current_class, (yylsp[(1) - (3)]), true);
       symbol_type_set ((yyvsp[(1) - (3)].symbol), current_type, (yylsp[(1) - (3)]));
@@ -2054,84 +2264,120 @@ yyreduce:
     }
     break;
 
-  case 63:
-#line 403 "../../src/parse-gram.y"
+  case 73:
+/* Line 1269 of yacc.c.  */
+#line 454 "parse-gram.y"
     {
       yyerrok;
     }
     break;
 
-  case 64:
-#line 409 "../../src/parse-gram.y"
+  case 74:
+/* Line 1269 of yacc.c.  */
+#line 460 "parse-gram.y"
     { current_lhs = (yyvsp[(1) - (1)].symbol); current_lhs_location = (yylsp[(1) - (1)]); }
     break;
 
-  case 66:
-#line 413 "../../src/parse-gram.y"
+  case 76:
+/* Line 1269 of yacc.c.  */
+#line 464 "parse-gram.y"
     { grammar_current_rule_end ((yylsp[(1) - (1)])); }
     break;
 
-  case 67:
-#line 414 "../../src/parse-gram.y"
+  case 77:
+/* Line 1269 of yacc.c.  */
+#line 465 "parse-gram.y"
     { grammar_current_rule_end ((yylsp[(3) - (3)])); }
     break;
 
-  case 69:
-#line 420 "../../src/parse-gram.y"
+  case 79:
+/* Line 1269 of yacc.c.  */
+#line 471 "parse-gram.y"
     { grammar_current_rule_begin (current_lhs, current_lhs_location); }
     break;
 
-  case 70:
-#line 422 "../../src/parse-gram.y"
+  case 80:
+/* Line 1269 of yacc.c.  */
+#line 473 "parse-gram.y"
     { grammar_current_rule_symbol_append ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)])); }
     break;
 
-  case 71:
-#line 424 "../../src/parse-gram.y"
-    { grammar_current_rule_action_append (gram_last_string,
-                                         gram_last_braced_code_loc); }
+  case 81:
+/* Line 1269 of yacc.c.  */
+#line 475 "parse-gram.y"
+    { grammar_current_rule_action_append ((yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])); }
     break;
 
-  case 72:
-#line 427 "../../src/parse-gram.y"
+  case 82:
+/* Line 1269 of yacc.c.  */
+#line 477 "parse-gram.y"
     { grammar_current_rule_prec_set ((yyvsp[(3) - (3)].symbol), (yylsp[(3) - (3)])); }
     break;
 
-  case 73:
-#line 429 "../../src/parse-gram.y"
+  case 83:
+/* Line 1269 of yacc.c.  */
+#line 479 "parse-gram.y"
     { grammar_current_rule_dprec_set ((yyvsp[(3) - (3)].integer), (yylsp[(3) - (3)])); }
     break;
 
-  case 74:
-#line 431 "../../src/parse-gram.y"
+  case 84:
+/* Line 1269 of yacc.c.  */
+#line 481 "parse-gram.y"
     { grammar_current_rule_merge_set ((yyvsp[(3) - (3)].uniqstr), (yylsp[(3) - (3)])); }
     break;
 
-  case 75:
-#line 435 "../../src/parse-gram.y"
-    { (yyval.symbol) = (yyvsp[(1) - (1)].symbol); }
+  case 87:
+/* Line 1269 of yacc.c.  */
+#line 497 "parse-gram.y"
+    {
+      static char one[] = "1";
+      (yyval.chars) = one;
+    }
     break;
 
-  case 76:
-#line 436 "../../src/parse-gram.y"
-    { (yyval.symbol) = (yyvsp[(1) - (1)].symbol); }
+  case 89:
+/* Line 1269 of yacc.c.  */
+#line 507 "parse-gram.y"
+    {
+      (yyvsp[(1) - (1)].chars)[strlen ((yyvsp[(1) - (1)].chars)) - 1] = '\n';
+      (yyval.chars) = translate_code ((yyvsp[(1) - (1)].chars) + 1, (yylsp[(1) - (1)]));
+    }
     break;
 
-  case 77:
-#line 442 "../../src/parse-gram.y"
+  case 90:
+/* Line 1269 of yacc.c.  */
+#line 523 "parse-gram.y"
+    { (yyval.symbol) = symbol_from_uniqstr ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
+    break;
+
+  case 91:
+/* Line 1269 of yacc.c.  */
+#line 525 "parse-gram.y"
     {
-      (yyval.symbol) = symbol_get (quotearg_style (c_quoting_style, (yyvsp[(1) - (1)].chars)), (yylsp[(1) - (1)]));
+      (yyval.symbol) = symbol_get (char_name ((yyvsp[(1) - (1)].character)), (yylsp[(1) - (1)]));
       symbol_class_set ((yyval.symbol), token_sym, (yylsp[(1) - (1)]), false);
+      symbol_user_token_number_set ((yyval.symbol), (yyvsp[(1) - (1)].character), (yylsp[(1) - (1)]));
     }
     break;
 
-  case 78:
-#line 451 "../../src/parse-gram.y"
-    { (yyval.chars) = (yyvsp[(1) - (1)].chars); }
+  case 92:
+/* Line 1269 of yacc.c.  */
+#line 533 "parse-gram.y"
+    { (yyval.symbol) = symbol_from_uniqstr ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
     break;
 
-  case 80:
-#line 458 "../../src/parse-gram.y"
+  case 95:
+/* Line 1269 of yacc.c.  */
+#line 545 "parse-gram.y"
+    {
+      (yyval.symbol) = symbol_get (quotearg_style (c_quoting_style, (yyvsp[(1) - (1)].chars)), (yylsp[(1) - (1)]));
+      symbol_class_set ((yyval.symbol), token_sym, (yylsp[(1) - (1)]), false);
+    }
+    break;
+
+  case 97:
+/* Line 1269 of yacc.c.  */
+#line 554 "parse-gram.y"
     {
       muscle_code_grow ("epilogue", translate_code ((yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)])), (yylsp[(2) - (2)]));
       gram_scanner_last_string_free ();
@@ -2139,8 +2385,8 @@ yyreduce:
     break;
 
 
-/* Line 1267 of yacc.c.  */
-#line 2144 "../../src/parse-gram.c"
+/* Line 1269 of yacc.c.  */
+#line 2390 "parse-gram.c"
       default: break;
     }
   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
@@ -2216,7 +2462,7 @@ yyerrlab:
 
   if (yyerrstatus == 3)
     {
-      /* If just tried and failed to reuse look-ahead token after an
+      /* If just tried and failed to reuse lookahead token after an
         error, discard it.  */
 
       if (yychar <= YYEOF)
@@ -2233,7 +2479,7 @@ yyerrlab:
        }
     }
 
-  /* Else will try to reuse look-ahead token after shifting the error
+  /* Else will try to reuse lookahead token after shifting the error
      token.  */
   goto yyerrlab1;
 
@@ -2291,14 +2537,11 @@ yyerrlab1:
       YY_STACK_PRINT (yyss, yyssp);
     }
 
-  if (yyn == YYFINAL)
-    YYACCEPT;
-
   *++yyvsp = yylval;
 
   yyerror_range[1] = yylloc;
   /* Using YYLLOC is tempting, but would change the location of
-     the look-ahead.  YYLOC is available though.  */
+     the lookahead.  YYLOC is available though.  */
   YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);
   *++yylsp = yyloc;
 
@@ -2334,7 +2577,7 @@ yyexhaustedlab:
 #endif
 
 yyreturn:
-  if (yychar != YYEOF && yychar != YYEMPTY)
+  if (yychar != YYEMPTY)
      yydestruct ("Cleanup: discarding lookahead",
                 yytoken, &yylval, &yylloc);
   /* Do not reclaim the symbols of the rule which action triggered
@@ -2360,7 +2603,8 @@ yyreturn:
 }
 
 
-#line 464 "../../src/parse-gram.y"
+/* Line 1486 of yacc.c.  */
+#line 560 "parse-gram.y"
 
 
 
@@ -2445,6 +2689,7 @@ add_param (char const *type, char *decl, location loc)
   gram_scanner_last_string_free ();
 }
 
+
 static void
 version_check (location const *loc, char const *version)
 {
@@ -2468,3 +2713,16 @@ token_name (int type)
   return yytname[YYTRANSLATE (type)];
 }
 
+static char const *
+char_name (char c)
+{
+  if (c == '\'')
+    return "'\\''";
+  else
+    {
+      char buf[4];
+      buf[0] = '\''; buf[1] = c; buf[2] = '\''; buf[3] = '\0';
+      return quotearg_style (escape_quoting_style, buf);
+    }
+}
+