doc: style changes

* doc/bison.texi (Destructor Decl, Printer Decl): Group series of %token
and %type together.
This commit is contained in:
Akim Demaille
2013-02-25 10:31:03 +01:00
parent 71846502ae
commit d1a07886ee

View File

@@ -4990,10 +4990,8 @@ For example:
@example @example
%union @{ char *string; @} %union @{ char *string; @}
%token <string> STRING1 %token <string> STRING1 STRING2
%token <string> STRING2 %type <string> string1 string2
%type <string> string1
%type <string> string2
%union @{ char character; @} %union @{ char character; @}
%token <character> CHR %token <character> CHR
%type <character> chr %type <character> chr
@@ -5119,10 +5117,8 @@ For example:
@example @example
%union @{ char *string; @} %union @{ char *string; @}
%token <string> STRING1 %token <string> STRING1 STRING2
%token <string> STRING2 %type <string> string1 string2
%type <string> string1
%type <string> string2
%union @{ char character; @} %union @{ char character; @}
%token <character> CHR %token <character> CHR
%type <character> chr %type <character> chr