Paul Eggert wrote:
> The difference can be seen with this script:
>
> trap : 2
> sleep 5
> sleep 10
>
> If you execute this with "bash -x", and interrupt the "sleep 5" with
> Control-C, you'll see that the "sleep 10" is executed with "trap :",
> whereas it would not be executed with "trap -".
Oh,
Paul Eggert wrote:
> How about this change? It reflects what's currently installed into
> coreutils (I merged your changes). I've tested this with GCC 2.95 and
> it works the way you like there.
Thanks,
> The basic idea is to make bool an
> enum type when using GCC, but to fall back on signed c
Bruno Haible <[EMAIL PROTECTED]> writes:
> I remember that for several gcc versions, the problems were in the
> stdbool.h file, not in the built-in type. So I propose to continue using
> _Bool in that case, unlike your patch.
Yes, that sounds even nicer. I copied this into coreutils, so now the
Jim Meyering <[EMAIL PROTECTED]> writes:
> I'll deal with it in a few days, if you don't beat me to it.
I just now installed it, into both gnulib and coretuils-b5_9x.
2006-01-26 Paul Eggert <[EMAIL PROTECTED]>
* fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too. Don't
atte