> On 7 Feb 2023, at 12:06, Bruno Haible wrote:
>
> Thanks Paul, for reviewing what I wrote.
>
> Paul Eggert wrote:
>>> * We should stop compiling with -Wstrict-prototypes and instead (not
>>> always,
>>> but frequently enough) compile with the '-std=gnu23' option. Clang
>>> currentl
Thanks Paul, for reviewing what I wrote.
Paul Eggert wrote:
> >* We should stop compiling with -Wstrict-prototypes and instead (not
> > always,
> > but frequently enough) compile with the '-std=gnu23' option. Clang
> > currently implements it better. GCC 13 may be on par with clang
On 2/6/23 14:48, Bruno Haible wrote:
* In the long term, assuming ISO C 23 and newer, writing (void) is just
clutter in those places where one can just as well write (). The keyword
'void' here only tells that the programmer has accomplished the migration
from K&R C to ISO C 23,
Paul Eggert wrote:
> static void
> -init_sh_quoting_options ()
> +init_sh_quoting_options (void)
> {
Your change prompted me to wonder whether this patch should be generalized,
that is, whether all function definitions with empty parameter lists should
be changed to use this style. Like in the a