]> git.saurik.com Git - bison.git/commitdiff
(Debugging): Remove YYSTDERR; it's no longer defined or used.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Jan 2002 01:25:38 +0000 (01:25 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Jan 2002 01:25:38 +0000 (01:25 +0000)
Also, s/cstdio.h/cstdio/.

doc/bison.texinfo

index f4360cd3cf8da01c02da46a6b60ac68daec6e720..029e249066436b3a1cbcea3551f4d286eabcb9fe 100644 (file)
@@ -4950,13 +4950,13 @@ Summary}).  We suggest that you always define @code{YYDEBUG} so that
 debugging is always possible.
 
 The trace facility outputs messages with macro calls of the form
-@code{YYFPRINTF (YYSTDERR, @var{format}, @var{args})} where
+@code{YYFPRINTF (stderr, @var{format}, @var{args})} where
 @var{format} and @var{args} are the usual @code{printf} format and
 arguments.  If you define @code{YYDEBUG} to a nonzero value but do not
 define @code{YYFPRINTF}, @code{<stdio.h>} is automatically included
-and the macros are defined to @code{fprintf} and @code{stderr}.  In
-the same situation, C++ parsers include @code{<cstdio.h>} instead, and
-use @code{std::fprintf} and @code{std::stderr}.
+and @code{YYPRINTF} is defined to @code{fprintf}.  In the same
+situation, C++ parsers include @code{<cstdio>} and use
+@code{std::fprintf} instead.
 
 Once you have compiled the program with trace facilities, the way to
 request a trace is to store a nonzero value in the variable @code{yydebug}.