* doc/bison.texi: Use @group.
---
doc/bison.texi | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/doc/bison.texi b/doc/bison.texi
index 18d3bb0..24d05d3 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -6994,30 +6994,38 @@ reduce/reduce conflict must be studied and usually
eliminated. Here is the
proper way to define @code{sequence}:
@example
+@group
sequence:
/* empty */ @{ printf ("empty sequence\n"); @}
| sequence word @{ printf ("added word %s\n", $2); @}
;
+@end group
@end example
Here is another common error that yields a reduce/reduce conflict:
@example
sequence:
+@group
/* empty */
| sequence words
| sequence redirects
;
+@end group
+@group
words:
/* empty */
| words word
;
+@end group
+@group
redirects:
/* empty */
| redirects redirect
;
+@end group
@end example
@noindent
--
1.8.0