From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 647 invoked from network); 25 Jul 1999 11:39:06 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 25 Jul 1999 11:39:06 -0000 Received: (qmail 26257 invoked by alias); 25 Jul 1999 11:38:57 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7277 Received: (qmail 26250 invoked from network); 25 Jul 1999 11:38:56 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: CVS completer (Re: PATCH: Re: Completion/User functions again) References: <199907211127.NAA02895@beta.informatik.hu-berlin.de> <990721155446.ZM6856@candle.brasslantern.com> MIME-Version: 1.0 (generated by AKEMI 1.13.2 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCQTA0Y0s8GyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 25 Jul 1999 20:38:50 +0900 In-Reply-To: Tanaka Akira's message of "25 Jul 1999 18:23:00 +0900" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.2 (=?ISO-2022-JP?B?GyRCQTAbKEI=?= =?ISO-2022-JP?B?GyRCNGNLPBsoQg==?=) FLAM-DOODLE/1.12.6 (=?ISO-2022-JP?B?GyRCM3cbKEI=?= 10R4.0/5.0) Emacs/20.4 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article , Tanaka Akira writes: > Most of codes to handle CVS/* are taken from Misc/compctl-examples. Probably, this is a bug fix though I don't understand rules for array variable expansion completely. --- Misc/compctl-examples- Sun Jul 25 20:34:56 1999 +++ Misc/compctl-examples Sun Jul 25 20:35:06 1999 @@ -563,7 +563,7 @@ cvsentries() { setopt localoptions nullglob unset if [[ -f ${pref}CVS/Entries ]]; then - reply=( "${pref}${^${(@)${(@)${(f@)$(<${pref}CVS/Entries)}:#D*}#/}%%/*}" ) + reply=( "${pref}${(@)^${(@)${(@)${(f@)$(<${pref}CVS/Entries)}:#D*}#/}%%/*}" ) fi } -- Tanaka Akira