zsh-workers
 help / color / mirror / code / Atom feed
* Should we "fix" this declaration?
@ 2023-09-10 22:00 Bart Schaefer
  2023-09-11  7:28 ` Jun T
  0 siblings, 1 reply; 2+ messages in thread
From: Bart Schaefer @ 2023-09-10 22:00 UTC (permalink / raw)
  To: Zsh hackers list

/**/
void
forget_edits(void)
{
    if (!have_edits) {
       return;
    }
    have_edits = 0;
    Histent he;

That's from users/29175, but we've previously followed the old C
format that declarations have to be at the start of a block.  If so,
it should be

/**/
void
forget_edits(void)
{
    Histent he;
    if (!have_edits) {
       return;
    }
    have_edits = 0;


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Should we "fix" this declaration?
  2023-09-10 22:00 Should we "fix" this declaration? Bart Schaefer
@ 2023-09-11  7:28 ` Jun T
  0 siblings, 0 replies; 2+ messages in thread
From: Jun T @ 2023-09-11  7:28 UTC (permalink / raw)
  To: zsh-workers


> 2023/09/11 7:00, Bart Schaefer <schaefer@brasslantern.com> wrote:
> 
>    have_edits = 0;
>    Histent he;
> 
> That's from users/29175, but we've previously followed the old C
> format that declarations have to be at the start of a block.

I personally think we don't need to "fix" this.

The current zsh source already uses 'inline' function (new in C99, I think)
in hashtable.c. This is added by commit 6f6363d (Jul. 28, 2020). If I try
to build zsh on macOS (Apple clang 10.0) with CFLAGS='-std=c89' then it
first fails due to this inline function (may also fail on other files).
On Ubuntu 22.04 (gcc-11.4) CFLAGS='-std=c89' seems to give lots more errors.

I have no idea what kind of old compilers are still in use, but even if
they are not 100% compatible with C99 (especially some library functions),
I think they support '// comment' and 'mixed declarations and code'.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-11  7:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-10 22:00 Should we "fix" this declaration? Bart Schaefer
2023-09-11  7:28 ` Jun T

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).