]> git.saurik.com Git - bison.git/blobdiff - ChangeLog
Fix `%nonassoc and eof'.
[bison.git] / ChangeLog
index e9876f3d04e9c085a319c9f8770f3fa5d7bc7d5a..06216c55bc79eea1418241bca63895c66d920a8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2002-01-27  Akim Demaille  <akim@epita.fr>
+
+       Fix `%nonassoc and eof'.
+
+       * src/state.c (errs_dup): Aaaah!  The failure was due to bytes
+       which were not properly copied!  Replace
+       memcpy (res->errs, src->errs, src->nerrs);
+       with
+       memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
+       !!!
+       * tests/regression.at (%nonassoc and eof): Adjust to newest
+       Autotest: `.' is not in the PATH.
+
 2002-01-27  Akim Demaille  <akim@epita.fr>
 
        * tests/sets.at (AT_EXTRACT_SETS): New.