From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1341 invoked from network); 24 Apr 1999 19:04:50 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 24 Apr 1999 19:04:50 -0000 Received: (qmail 20453 invoked by alias); 24 Apr 1999 19:04:41 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6092 Received: (qmail 20445 invoked from network); 24 Apr 1999 19:04:40 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: PATCH: _find References: <199904231201.OAA02796@beta.informatik.hu-berlin.de> MIME-Version: 1.0 (generated by AKEMI 1.13.1 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCP2U+PUJOGyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 25 Apr 1999 04:04:37 +0900 In-Reply-To: Sven Wischnowsky's message of "Fri, 23 Apr 1999 14:01:37 +0200 (MET DST)" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.1 (=?ISO-2022-JP?B?GyRCP2UbKEI=?= =?ISO-2022-JP?B?GyRCPj1CThsoQg==?=) FLAM-DOODLE/1.12.5 (=?ISO-2022-JP?B?GyRCRlAbKEI=?= 10R4.0/7.0) Emacs/20.3.8 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article <199904231201.OAA02796@beta.informatik.hu-berlin.de>, Sven Wischnowsky writes: > > Hi. I found a bug in Completion/User/_find with zsh-3.1.5-pws-15. > > Oops. I found another problem about _find. % zsh-3.1.5-pws-15 -f % fpath=($PWD/Completion/*(/)) % . Completion/Core/compinit % find / ./ ../ Hmm... Completion candidates are not enough. --- Completion/User/_find- Fri Apr 23 20:33:36 1999 +++ Completion/User/_find Sun Apr 25 03:55:15 1999 @@ -13,7 +13,7 @@ local ret=1 compgen -g '. ..' && ret=0 - _files -g '(-/)' && ret=0 + _files -g '*(-/)' && ret=0 return ret elif [[ "$prev" = -((a|c|)newer|fprint(|0|f)) ]]; then -- [Tanaka Akira]