]> git.saurik.com Git - bison.git/commitdiff
doc: style changes
authorAkim Demaille <akim@lrde.epita.fr>
Mon, 25 Feb 2013 09:31:03 +0000 (10:31 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Tue, 9 Apr 2013 12:07:52 +0000 (14:07 +0200)
* doc/bison.texi (Destructor Decl, Printer Decl): Group series of %token
and %type together.

doc/bison.texi

index 2ed10c2f7c5af0c50e629234002f3bb482d8ae57..6f50658ac9cae0272acacdb3a3913b095c576d7f 100644 (file)
@@ -4990,10 +4990,8 @@ For example:
 
 @example
 %union @{ char *string; @}
-%token <string> STRING1
-%token <string> STRING2
-%type  <string> string1
-%type  <string> string2
+%token <string> STRING1 STRING2
+%type  <string> string1 string2
 %union @{ char character; @}
 %token <character> CHR
 %type  <character> chr
@@ -5119,10 +5117,8 @@ For example:
 
 @example
 %union @{ char *string; @}
-%token <string> STRING1
-%token <string> STRING2
-%type  <string> string1
-%type  <string> string2
+%token <string> STRING1 STRING2
+%type  <string> string1 string2
 %union @{ char character; @}
 %token <character> CHR
 %type  <character> chr