]> git.saurik.com Git - bison.git/commitdiff
doc/bison.texinfo: Change @samp{$<@dots{}>} to @samp{$<@dots{}>@var{n}} in Section...
authorMarc Autret <autret_m@epita.fr>
Wed, 8 Aug 2001 21:55:36 +0000 (21:55 +0000)
committerMarc Autret <autret_m@epita.fr>
Wed, 8 Aug 2001 21:55:36 +0000 (21:55 +0000)
ChangeLog
THANKS
doc/bison.texinfo

index ce0612fe66e103f08a75fef2574e89c1216b58bb..b52b2ef837064781a8c09b90d3e151d7bc752590 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
diff --git a/THANKS b/THANKS
index cee425f8bc921112e6590f56653a4cce2204609e..72335160156b383c763e31b00c50e2260c779475 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -1,8 +1,10 @@
 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
index 03af981f1069917ba5cb2a69044302392ebf55bc..ed68324172b9abc0459e441f5bc48b23dd26d747 100644 (file)
@@ -2730,8 +2730,8 @@ The mid-rule action can also have a semantic value.  The action can set
 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