]> git.saurik.com Git - bison.git/commitdiff
* tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
authorAkim Demaille <akim@epita.fr>
Thu, 19 Jan 2006 12:47:17 +0000 (12:47 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 19 Jan 2006 12:47:17 +0000 (12:47 +0000)
location, not just parts of it.

ChangeLog
tests/calc.at

index 788ca409b25dd8d18ae3198f84732b1aa3cb639b..b618ee0af0c37297088d6225243c0361963fe611 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-19  Akim Demaille  <akim@epita.fr>
+
+       * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
+       location, not just parts of it.
+
 2006-01-18  Paul Eggert  <eggert@cs.ucla.edu>
 
        * NEWS: Document the fact that multiple %unions are now allowed.
index 1e9756f09e32b5588e2d8b75d23706ece4f51262..909b4a6c5c4a84992968caf61784dacc0fc1e0a7 100644 (file)
@@ -99,7 +99,7 @@ static void unget_char (]AT_LEX_PRE_FORMALS[ int c);
    are stored in a union, from which objects with constructors are
    excluded in C++. */
 %initial-action {
-  @$.begin.filename = @$.end.filename = 0;
+  @$.initialize (0);
 }
 ])[