+2001-11-28 Marc Autret <autret_m@epita.fr>
+
+ * src/output.h: And put its extern declaration here.
+ * src/output.c (error_verbose): Define here.
+ (prepare): Echo name modification.
+ * src/getargs.h: Clean its extern declaration.
+ * src/getargs.c (error_verbose_flag): Remove.
+ (getargs): Remove case 'e'.
+ * src/options.c (option_table): 'error-verbose' is now seen as simple
+ percent option.
+ Include output.h.
+
+ * src/reader.c (read_declarations): Remove case tok_include.
+ (parse_include_decl): Remove.
+ * src/lex.h (token_t): Remove tok_include.
+ * src/options.c (option_table): 'include' is now a simple command line
+ option.
+
2001-11-28 Marc Autret <autret_m@epita.fr>
* src/bison.simple: Adjust muscle names.
#include "gram.h"
#include "symtab.h"
#include "lex.h"
+#include "output.h"
#include "options.h"
/* Shorts options. */
/* Parser. */
/* was 'a'; apparently unused -wjh */
{opt_cmd_line, "name-prefix", required_argument, 0, 0, 'p'},
+ {opt_cmd_line, "include", required_argument, 0, 0, 'I'},
/* Output. */
{opt_cmd_line, "file-prefix", required_argument, 0, 0, 'b'},
{opt_percent, "nonassoc", 0, NULL, tok_nonassoc, 0},
{opt_percent, "binary", 0, NULL, tok_nonassoc, 0},
{opt_percent, "prec", 0, NULL, tok_prec, 0},
+ {opt_percent, "error-verbose", 0, &error_verbose, tok_intopt, 0},
/* FIXME: semantic parsers will output an `include' of an
output file: be sure that the naem included is indeed the name of
/* Output. */
{opt_both, "defines", optional_argument, &defines_flag, tok_intopt, 'd'},
{opt_both, "verbose", no_argument, &verbose_flag, tok_intopt, 'v'},
- {opt_both, "error-verbose", no_argument,&error_verbose_flag, tok_intopt, 'e'},
/* Operation modes. */
{opt_both, "fixed-output-files", no_argument, &yacc_flag, tok_intopt, 'y'},
{opt_both, "no-parser", no_argument, &no_parser_flag, tok_intopt, 'n'},
{opt_both, "raw", no_argument, 0, tok_obsolete, 'r'},
{opt_both, "skeleton", required_argument, 0, tok_skel, 'S'},
- {opt_both, "include", required_argument, 0, tok_include, 'I'},
{opt_both, "token-table", no_argument, &token_table_flag, tok_intopt, 'k'},
{0, 0, 0, 0, 0, 0}
struct obstack muscle_obstack;
struct obstack output_obstack;
+int error_verbose = 0;
+
/* FIXME. */
static inline void
MUSCLE_INSERT_INT ("final", final_state);
MUSCLE_INSERT_INT ("maxtok", max_user_token_number);
MUSCLE_INSERT_INT ("ntbase", ntokens);
- MUSCLE_INSERT_INT ("error-verbose", error_verbose_flag);
+ MUSCLE_INSERT_INT ("error-verbose", error_verbose);
MUSCLE_INSERT_INT ("nnts", nvars);
MUSCLE_INSERT_INT ("nrules", nrules);