From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24962 invoked from network); 18 May 2005 14:49:42 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 18 May 2005 14:49:42 -0000 Received: (qmail 59660 invoked from network); 18 May 2005 14:49:36 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 18 May 2005 14:49:36 -0000 Received: (qmail 12856 invoked by alias); 18 May 2005 14:49:28 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8864 Received: (qmail 12837 invoked from network); 18 May 2005 14:49:28 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 18 May 2005 14:49:28 -0000 Received: (qmail 58512 invoked from network); 18 May 2005 14:49:28 -0000 Received: from yupa.krose.org (HELO chihiro.valley-of-wind.krose.org) (66.92.73.159) by a.mx.sunsite.dk with SMTP; 18 May 2005 14:49:15 -0000 Received: from [192.168.32.22] (jihl-squtun.valley-of-wind.krose.org [192.168.32.22]) by chihiro.valley-of-wind.krose.org (8.13.4/8.13.4/Debian-1) with ESMTP id j4IEnBWW000719; Wed, 18 May 2005 10:49:12 -0400 Message-ID: <428B55E2.6000608@krose.org> Date: Wed, 18 May 2005 10:49:06 -0400 From: Kyle Rose Organization: krose.org User-Agent: Debian Thunderbird 1.0.2 (X11/20050331) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bart Schaefer CC: zsh-users@sunsite.dk Subject: Re: Completion strangeness References: <428A59D9.9050305@krose.org> <1050518021355.ZM28099@candle.brasslantern.com> In-Reply-To: <1050518021355.ZM28099@candle.brasslantern.com> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.4 required=6.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.4 Bart Schaefer wrote: > On May 17, 4:53pm, Kyle Rose wrote: > } Subject: Completion strangeness > } > } This relates to zsh 4.2.5's ssh command line completion. I don't know > } if this problem exists in earlier versions. > > Unless I'm mistaken, this is yet another symptom of an old, old problem. > > See zsh-workers/16598 and its thread, and search for 16598 in the years > 2004 and 2005 using http://www.zsh.org/cgi-bin/mla/wilma/workers > FWIW, I tried this patch: diff -r1.1 _combination 91c91,93 < compadd "$@" -a tmp || { (( $+functions[_$key] )) && "_$key" "$@" } --- > local expl > _wanted $key expl $key compadd "$@" -a tmp || > { (( $+functions[_$key] )) && "_$key" "$@" } and it does *not* change the behavior I'm seeing. I checked functions to make sure the updated version was cached. :P Kyle