]> git.saurik.com Git - bison.git/commitdiff
doc: address a fixme
authorAkim Demaille <akim@lrde.epita.fr>
Mon, 20 Aug 2012 07:09:04 +0000 (09:09 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Mon, 3 Sep 2012 14:23:14 +0000 (16:23 +0200)
* doc/bison.texi (Calc++ Parser): Add a cross-reference.

doc/bison.texi

index 94367190c1495affa922b37fe83c237e2b74a76a..0a0ae01ccdc57114ae14d6720b5f153ffa7b85ed 100644 (file)
@@ -10320,9 +10320,8 @@ tags.
 No @code{%destructor} is needed to enable memory deallocation during error
 recovery; the memory, for strings for instance, will be reclaimed by the
 regular destructors.  All the values are printed using their
-@code{operator<<}.
+@code{operator<<} (@pxref{Printer Decl, , Printing Semantic Values}).
 
-@c FIXME: Document %printer, and mention that it takes a braced-code operand.
 @comment file: calc++-parser.yy
 @example
 %printer @{ yyoutput << $$; @} <*>;