+2001-08-08 Marc Autret <autret_m@epita.fr>
+
+ * doc/bison.texinfo: Change @samp{$<@dots{}>} to
+ @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
+ Reported by Fabrice Bauzac.
+
2001-08-08 Marc Autret <autret_m@epita.fr>
* ChangeLog: Adjust.
Bison was originally written by Robert Corbett. It would not be what
it is today without the invaluable help of these people:
+Akim Demaille akim@lrde.epita.fr
Daniel Hagerty hag@gnu.org
David J. MacKenzie djm@gnu.org
+Fabrice Bauzac noon@cote-dazur.com
Hans Aberg haberg@matematik.su.se
Jesse Thilo jthilo@gnu.org
Jim Meyering meyering@gnu.org
its value with an assignment to @code{$$}, and actions later in the rule
can refer to the value using @code{$@var{n}}. Since there is no symbol
to name the action, there is no way to declare a data type for the value
-in advance, so you must use the @samp{$<@dots{}>} construct to specify a
-data type each time you refer to this value.
+in advance, so you must use the @samp{$<@dots{}>@var{n}} construct to
+specify a data type each time you refer to this value.
There is no way to set the value of the entire rule with a mid-rule
action, because assignments to @code{$$} do not have that effect. The