The BASH_STRUCT_DIRENT* macros duplicate the caching, message printing,
and defining functionality already present in the AC_CHECK_MEMBERS macro
that gets called.
It's cosmetic, but causes the configure output to look like:
checking for struct dirent.d_ino... checking for struct dirent.d_ino.
Without an existing cache, if we run ./configure -C, we get the odd-
looking:
checking for usable strtoimax... checking for strtoimax... yes
checking whether strtoimax is declared... yes
yes
config.h is correct though:
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_STRTOIMAX 1
H
On 10/23/24 2:44 AM, Simone Robinson via Bug reports for the GNU Bourne
Again SHell wrote:
On line 3182 of jobs.c (https://github.com/bminor/bash/blob/master/jobs.c),
readers can find the following comment:
"If we are non-interactive, but job control is enabled, and the job died due to
SIGINT
Dear GNU Bash maintainers,
I would like to make a small suggestion regarding the current documentation in
the hope that it spares future users a bit of "head scratching" and several
hours of research.
On line 3182 of jobs.c (https://github.com/bminor/bash/blob/master/jobs.c),
readers can find th