From: Akim Demaille Date: Thu, 19 Jan 2006 12:47:17 +0000 (+0000) Subject: * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial X-Git-Tag: v2.3b~489 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/ed94ef2ae40371bc1d1886915183daa6e36a177a * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial location, not just parts of it. --- diff --git a/ChangeLog b/ChangeLog index 788ca409..b618ee0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-19 Akim Demaille + + * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial + location, not just parts of it. + 2006-01-18 Paul Eggert * NEWS: Document the fact that multiple %unions are now allowed. diff --git a/tests/calc.at b/tests/calc.at index 1e9756f0..909b4a6c 100644 --- a/tests/calc.at +++ b/tests/calc.at @@ -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); } ])[