* src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the

user prologue.  These are defaults.
* tests/actions.at (Mid-rule actions): Make sure the user can
define YYDEBUG and YYERROR_VERBOSE.
This commit is contained in:
Akim Demaille
2001-12-29 14:27:01 +00:00
parent b9cecb91a0
commit d99361e657
3 changed files with 27 additions and 17 deletions

View File

@@ -31,10 +31,12 @@ AT_SETUP([Mid-rule actions])
AT_DATA([[input.y]],
[[%{
#include <stdio.h>
#include <stdlib.h>
static void yyerror (const char *msg);
static int yylex (void);
# include <stdio.h>
# include <stdlib.h>
static void yyerror (const char *msg);
static int yylex (void);
# define YYDEBUG 1
# define YYERROR_VERBOSE 1
%}
%%
exp: { putchar ('0'); }