From: Akim Demaille Date: Mon, 25 Feb 2013 09:31:03 +0000 (+0100) Subject: doc: style changes X-Git-Tag: v2.7.90~40 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/d1a07886ee63d7346d585d34190162b79a30fdfb?ds=sidebyside;hp=--cc doc: style changes * doc/bison.texi (Destructor Decl, Printer Decl): Group series of %token and %type together. --- d1a07886ee63d7346d585d34190162b79a30fdfb diff --git a/doc/bison.texi b/doc/bison.texi index 2ed10c2f..6f50658a 100644 --- a/doc/bison.texi +++ b/doc/bison.texi @@ -4990,10 +4990,8 @@ For example: @example %union @{ char *string; @} -%token STRING1 -%token STRING2 -%type string1 -%type string2 +%token STRING1 STRING2 +%type string1 string2 %union @{ char character; @} %token CHR %type chr @@ -5119,10 +5117,8 @@ For example: @example %union @{ char *string; @} -%token STRING1 -%token STRING2 -%type string1 -%type string2 +%token STRING1 STRING2 +%type string1 string2 %union @{ char character; @} %token CHR %type chr