X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/3cf084ecae1b304b92d6d43cf530aded12162a58..eaea13f59f540b84e0a2f66d762e8a286174c98f:/doc/bison.texinfo diff --git a/doc/bison.texinfo b/doc/bison.texinfo index a0c9402a..763320bd 100644 --- a/doc/bison.texinfo +++ b/doc/bison.texinfo @@ -7583,10 +7583,14 @@ parser's to get the set of defined tokens. # include # include "calc++-driver.hh" # include "calc++-parser.hh" -/* Work around a bug in flex 2.5.31. See Debian bug 333231 - . */ + +/* Work around an incompatibility in flex (at least versions + 2.5.31 through 2.5.33): it generates code that does + not conform to C89. See Debian bug 333231 + . */ # undef yywrap # define yywrap() 1 + /* By default yylex returns int, we use token_type. Unfortunately yyterminate by default returns 0, which is not of token_type. */