emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: emacs.c broken by revision 1.435


From: David Kastrup
Subject: Re: emacs.c broken by revision 1.435
Date: Wed, 23 Jul 2008 10:48:23 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)

"Tim Van Holder" <address@hidden> writes:

> The "LINUX_SBRK_BUG" condition was incorrectly replaced with
>
> #if (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
>   __sbrk (1);
> #endif
>
> instead of
>
> #if defined (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
>   __sbrk (1);
> #endif
>
> resulting in a broken build.

Can we rely on "defined" being available?  Seems like an ANSI feature to
me...  Maybe nested #ifdef and #if would be safer?

-- 
David Kastrup




reply via email to

[Prev in Thread] Current Thread [Next in Thread]