Re: [PATCH] lib/readline/doc makefiles clean targets

2024-11-08 Thread Mike Jonkmans
On Thu, Nov 07, 2024 at 06:05:36PM -0500, Chet Ramey wrote: > On 11/4/24 9:44 AM, Mike Jonkmans wrote: > > > > > According to info (make)Standard Targets, we should have: > > > > mostlyclean < clean < distclean < maintainer-clean > > > That hierarchy isn't gospel. > > Agreed, but... > > > The

Re: [EXTERNAL] - Re: This errors in 4.4, did not in 4.2: set -u; declare -A foo; echo ${#foo[@]}

2024-11-08 Thread Greg Wooledge
On Fri, Nov 08, 2024 at 15:33:29 +, David Linden wrote: > FYI, since I'm reporting behavior of 4.2 and this appears fixed in 4.4. > > In 4.2, it seems that providing the =() as part of the declaration throws > away the -g-ness of the declaration-within-a-function. I need to touch it > after

Re: "complete -o filenames" sometimes not working

2024-11-08 Thread Chet Ramey
On 11/7/24 9:53 AM, Clark Wang wrote: See the following reproduce example: $ cat ssh_compspec COMP_WORDBREAKS=${COMP_WORDBREAKS//[=:]/} function _ssh() { local cur="$2" pre="$3" local options=( ProxyCommand='/usr/bin/nc -x host:port %h %p -X 5' ProxyCommand='/usr/bin

RE: [EXTERNAL] - Re: This errors in 4.4, did not in 4.2: set -u; declare -A foo; echo ${#foo[@]}

2024-11-08 Thread David Linden
FYI, since I'm reporting behavior of 4.2 and this appears fixed in 4.4. In 4.2, it seems that providing the =() as part of the declaration throws away the -g-ness of the declaration-within-a-function. I need to touch it after the declare: (10:29)condor:~[518,18]$ bash -c 'function foo() { decl