- { "token", NULL, TOKEN },
- { "term", NULL, TOKEN },
- { "nterm", NULL, NTERM },
- { "type", NULL, TYPE },
- { "guard", NULL, GUARD },
- { "union", NULL, UNION },
- { "expect", NULL, EXPECT },
- { "thong", NULL, THONG },
- { "start", NULL, START },
- { "left", NULL, LEFT },
- { "right", NULL, RIGHT },
- { "nonassoc", NULL, NONASSOC },
- { "binary", NULL, NONASSOC },
- { "prec", NULL, PREC },
- { "locations", &locations_flag, NOOP }, /* -l */
- { "no_lines", &no_lines_flag, NOOP }, /* -l */
- { "raw", &raw_flag, NOOP }, /* -r */
- { "token_table", &token_table_flag, NOOP }, /* -k */
- { "yacc", &yacc_flag, NOOP }, /* -y */
- { "fixed_output_files",&yacc_flag, NOOP }, /* -y */
- { "defines", &defines_flag, NOOP }, /* -d */
- { "no_parser", &no_parser_flag, NOOP }, /* -n */
-#if 0
- /* For the time being, this is not enabled yet, while it's possible
- though, since we use obstacks. The only risk is with semantic
- parsers which will output an `include' of an output file: be sure
- that the naem included is indeed the name of the output file. */
- { "output_file", &spec_outfile, SETOPT }, /* -o */
- { "file_prefix", &spec_file_prefix, SETOPT }, /* -b */
- { "name_prefix", &spec_name_prefix, SETOPT }, /* -p */
-#endif
- { "verbose", &verbose_flag, NOOP }, /* -v */
- { "debug", &debug_flag, NOOP }, /* -t */
- { "semantic_parser", &semantic_parser, NOOP },
- { "pure_parser", &pure_parser, NOOP },
-/* {"help", <print usage stmt>, NOOP}, *//* -h */
-/* {"version", <print version number> , NOOP}, *//* -V */
- { NULL, NULL, ILLEGAL}
-};