From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22628 invoked from network); 7 Sep 1999 21:06:56 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 7 Sep 1999 21:06:56 -0000 Received: (qmail 29686 invoked by alias); 7 Sep 1999 21:06:46 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7702 Received: (qmail 29678 invoked from network); 7 Sep 1999 21:06:45 -0000 From: "Bart Schaefer" Message-Id: <990907210627.ZM8775@candle.brasslantern.com> Date: Tue, 7 Sep 1999 21:06:27 +0000 In-Reply-To: Comments: In reply to Tanaka Akira "PATCH: Completion/User/_cvs again." (Sep 7, 3:10am) References: X-Mailer: Z-Mail Lite (5.0.0 30July97) To: Tanaka Akira , zsh-workers@sunsite.auc.dk Subject: Re: PATCH: Completion/User/_cvs again. MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Sep 7, 3:10am, Tanaka Akira wrote: > > +if ! builtin functions _cvs_command >&-; then > + _cvs_command () { (And similarly for lots of other functions) Aren't we already requiring the parameters modlue for some of the other completion stuff? Would this be faster/cleaner/clearer as if ! (( $+functions[_cvs_command] )); then ??