X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/bb32f4f284d5e86ad24f0684e16e19243c1957f2..a8c2e813f2c33f37558adeb0b01b190f93f6562f:/doc/bison.texinfo diff --git a/doc/bison.texinfo b/doc/bison.texinfo index 0a9b83d4..542b1215 100644 --- a/doc/bison.texinfo +++ b/doc/bison.texinfo @@ -7969,7 +7969,7 @@ avoid name clashes. %token ASSIGN ":=" %token <sval> IDENTIFIER "identifier" %token <ival> NUMBER "number" -%type <ival> exp "expression" +%type <ival> exp @end example @noindent @@ -7982,7 +7982,7 @@ To enable memory deallocation during error recovery, use %printer @{ debug_stream () << *$$; @} "identifier" %destructor @{ delete $$; @} "identifier" -%printer @{ debug_stream () << $$; @} "number" "expression" +%printer @{ debug_stream () << $$; @} <ival> @end example @noindent