Re: 'kill -l' outputs SIG prefix if job control not compiled in

2016-11-05 Thread Chet Ramey
On 11/4/16 6:30 PM, Martijn Dekker wrote: > Normal bash: > > $ kill -l 141 > PIPE > > Bash compiled with --enable-minimal-config --enable-alias: > > $ kill -l 141 > SIGPIPE > > That SIG prefix shouldn't be there. (Enabling POSIX mode makes no > difference to the output.) Bash's minimal

'kill -l' outputs SIG prefix if job control not compiled in

2016-11-04 Thread Martijn Dekker
Normal bash: $ kill -l 141 PIPE Bash compiled with --enable-minimal-config --enable-alias: $ kill -l 141 SIGPIPE That SIG prefix shouldn't be there. (Enabling POSIX mode makes no difference to the output.) A look at the source tells me that, for some reason, the POSIXly correct output of