]> git.saurik.com Git - bison.git/blobdiff - ChangeLog
Don't depend on C99 features.
[bison.git] / ChangeLog
index d42aa25471a1b2831e993d5aaf2ef42af0fdbdb2..1449cd1c5e13aa02e11518aaa3ca6a1ee03f7300 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,37 @@
+2007-05-27  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       Don't depend on C99 features.
+       * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
+       * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
+       * src/reader.c (check_and_convert_grammar): Fix for-loop.
+       * src/state.c (state_mark_reachable_states): Fix for-loop.
+       (state_remove_unreachable_states): Fix for-loop.
+
+       Don't widen struct state with member reachable just to temporarily
+       record reachability.  Instead, use a local bitset.
+       * src/state.h (struct state): Remove member.
+       * src/state.c (state_new): Don't initialize it.
+       (state_mark_reachable_states): Rename to...
+       (state_record_reachable_states): ... this, and use bitset.
+       (state_remove_unreachable_states): Use bitset.
+
 2007-05-26  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        * src/Makefile.am (yacc): Quote target action commands properly so
        that the yacc script isn't corrupt.  Reported by Hans Aberg at
        <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
 
+       * data/glr.c (yylval): As in yacc.c, don't extern in the header for
+       the case of pure parsers.  Reported by Frans Englich at
+       <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
+       * THANKS: Add Frans Englich.
+
+       * NEWS (2.3a+): In the %code entry, reference section `Bison
+       Declaration Summary' from the manual now since the %code summary has
+       moved there.
+       * doc/bison.texinfo (Prologue Alternatives): Mention that directives
+       in the rules section must be terminated by semicolons.
+
 2007-05-20  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        Extend the front-end API for %define variables to more completely