mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 06:43:03 +00:00
* 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.
This commit is contained in:
@@ -125,6 +125,8 @@ static int high;
|
||||
struct obstack muscle_obstack;
|
||||
struct obstack output_obstack;
|
||||
|
||||
int error_verbose = 0;
|
||||
|
||||
/* FIXME. */
|
||||
|
||||
static inline void
|
||||
@@ -1052,7 +1054,7 @@ prepare (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);
|
||||
|
||||
Reference in New Issue
Block a user