[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: error-verbose yycheck overrun
From: |
Paul Eggert |
Subject: |
Re: error-verbose yycheck overrun |
Date: |
03 Mar 2003 13:34:50 -0800 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/20.3 |
"Akim Demaille" <address@hidden> writes:
> --- data/yacc.c 25 Feb 2003 07:57:48 -0000 1.53
> +++ data/yacc.c 2 Mar 2003 13:16:34 -0000
> ...
> + const char* yyprefix;
> char *yymsg;
> ...
> - yycount++;
> + yycount += 1;
I would prefer to stick with the traditional C style where one uses
"x++" rather than "x += 1", and "char *foo" rather than "char* foo".
glr.c uses a different style (due to Paul Hilfinger, I guess?) but it
makes the code a bit harder for me to read, and I assume for others,
and I'd rather not have that style be propagated to the rest of Bison,
which is more traditional.