]> git.saurik.com Git - bison.git/commitdiff
* src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
authorMarc Autret <autret_m@epita.fr>
Sat, 15 Dec 2001 18:38:57 +0000 (18:38 +0000)
committerMarc Autret <autret_m@epita.fr>
Sat, 15 Dec 2001 18:38:57 +0000 (18:38 +0000)
ChangeLog
src/bison.simple

index eb416081acfe5a87e4378e18f494d2530e734227..5c475cc2f7edc2591f2b79e0578644d6110628d2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-12-15  Marc Autret  <autret_m@epita.fr>
+
+       * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
+
 2001-12-15  Marc Autret  <autret_m@epita.fr>
 
        * src/output.c (output_gram): Keep track of the hairy one.
index 3ca6833e9fe679ccff12a1330929834a72ee530c..0e121d229075126890183c397a9ea716df2ab125 100644 (file)
 #endif
 
 /* Enabling verbose error messages.  */
-#undef YYERROR_VERBOSE
-#define YYERROR_VERBOSE %%error-verbose
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE %%error-verbose
+#endif
 
 /* If name_prefix is specify substitute the variables and functions
    names.  */