]> git.saurik.com Git - bison.git/commitdiff
(Error Reporting, Table of Symbols):
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Sep 2005 06:01:50 +0000 (06:01 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Sep 2005 06:01:50 +0000 (06:01 +0000)
yynerrs is the number of errors reported, not the number of
errors encountered.

doc/bison.texinfo

index c384d2d41686aa9aa09f914700a1f32c3b4392f9..4cc32beaaf22dd83622bdcf39129d4aefc148071 100644 (file)
@@ -4693,7 +4693,7 @@ preferable since it more accurately describes the return type for
 
 @vindex yynerrs
 The variable @code{yynerrs} contains the number of syntax errors
 
 @vindex yynerrs
 The variable @code{yynerrs} contains the number of syntax errors
-encountered so far.  Normally this variable is global; but if you
+reported so far.  Normally this variable is global; but if you
 request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser})
 then it is a local variable which only the actions can access.
 
 request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser})
 then it is a local variable which only the actions can access.
 
@@ -8097,7 +8097,7 @@ Management}.
 @end deffn
 
 @deffn {Variable} yynerrs
 @end deffn
 
 @deffn {Variable} yynerrs
-Global variable which Bison increments each time there is a syntax error.
+Global variable which Bison increments each time it reports a syntax error.
 (In a pure parser, it is a local variable within @code{yyparse}.)
 @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
 @end deffn
 (In a pure parser, it is a local variable within @code{yyparse}.)
 @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
 @end deffn