[PATCH] BASH_STRUCT_DIRENT*: simplify

2024-10-23 Thread Grisha Levit
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.

[PATCH] BASH_FUNC_STRTOIMAX: fix and simplify

2024-10-23 Thread Grisha Levit
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

Re: Suggestion: adding one line to the "Signals" manual section

2024-10-23 Thread Chet Ramey
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

Suggestion: adding one line to the "Signals" manual section

2024-10-23 Thread Simone Robinson via Bug reports for the GNU Bourne Again SHell
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