From d1a07886ee63d7346d585d34190162b79a30fdfb Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Mon, 25 Feb 2013 10:31:03 +0100 Subject: [PATCH] doc: style changes * doc/bison.texi (Destructor Decl, Printer Decl): Group series of %token and %type together. --- doc/bison.texi | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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 -- 2.49.0