]> git.saurik.com Git - bison.git/commitdiff
* src/bison.simple (YYLSP_NEEDED): New definition.
authorMarc Autret <autret_m@epita.fr>
Fri, 31 Aug 2001 18:30:21 +0000 (18:30 +0000)
committerMarc Autret <autret_m@epita.fr>
Fri, 31 Aug 2001 18:30:21 +0000 (18:30 +0000)
* src/output.c (prepare): Add macro insertion of `locations_flag'

ChangeLog
src/bison.simple
src/output.c

index 8c7e5064f534169cdaead3c475672c166e46f99d..2ac2876bfbb454c6380be6eea1972a7b2fc89b28 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-31  Marc Autret  <autret_m@epita.fr>
+
+       * src/bison.simple (YYLSP_NEEDED): New definition.
+       * src/output.c (prepare): Add macro insertion of `locations_flag'
+
 2001-08-31  Pascal Bart  <pascal.bart@epita.fr>
 
        * src/output.c (prepare): Delete insertion of previous muscles,
index 1217108f827994e4a908a37f0fadba4ba4690593..7f17cd153c2f7fe30dc89d03ab1c9b4e17863650 100644 (file)
@@ -278,6 +278,9 @@ while (0)
    Current.last_column = Rhs[N].last_column;
 #endif
 
+/* Definition of YYLSP_NEEDED.  */
+#define YYLSP_NEEDED %%locations_flag
+
 /* YYLEX -- calling `yylex' with the right arguments.  */
 
 #if YYPURE
index 17329c890ccc32138faf076683e3644a808b0b8b..06c7090f89ec55b151ad6443c2ff40726eae5d53 100644 (file)
@@ -1074,6 +1074,8 @@ prepare (void)
   MACRO_INSERT_INT ("nstates", nstates);
   MACRO_INSERT_INT ("ntokens", ntokens);
 
+  MACRO_INSERT_INT ("locations_flag", locations_flag);
+
   if (spec_name_prefix)
     MACRO_INSERT_STRING ("prefix", spec_name_prefix);
 }