János Zoltán Szabó <[EMAIL PROTECTED]> writes:
> It would be better to write this:
> yysize1 = yysize + yystrlen (yyf);
Thanks for catching this infringement on user name space.
I installed that fix, as follows:
2005-05-30 Paul Eggert <[EMAIL PROTECTED]>
Fix infringement on user name space reported by Janos Zoltan Szabo.
* data/yacc.c (yyparse): strlen -> yystrlen.
--- yacc.c 27 May 2005 23:22:10 -0000 1.90
+++ yacc.c 30 May 2005 17:22:55 -0000 1.91
@@ -1157,7 +1157,7 @@ yyerrlab:
}
yyf = _(yyformat);
- yysize1 = yysize + strlen (yyf);
+ yysize1 = yysize + yystrlen (yyf);
yysize_overflow |= yysize1 < yysize;
yysize = yysize1;