From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2389 invoked from network); 20 Sep 2006 09:34:09 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 20 Sep 2006 09:34:09 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 90859 invoked from network); 20 Sep 2006 09:34:00 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 20 Sep 2006 09:34:00 -0000 Received: (qmail 18669 invoked by alias); 20 Sep 2006 09:33:50 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10746 Received: (qmail 18660 invoked from network); 20 Sep 2006 09:33:50 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 20 Sep 2006 09:33:50 -0000 Received: (qmail 89294 invoked from network); 20 Sep 2006 09:33:50 -0000 Received: from cluster-c.mailcontrol.com (168.143.177.190) by a.mx.sunsite.dk with SMTP; 20 Sep 2006 09:33:48 -0000 Received: from cameurexb01.EUROPE.ROOT.PRI ([62.189.241.200]) by rly26c.srv.mailcontrol.com (MailControl) with ESMTP id k8K9QiZd028626 for ; Wed, 20 Sep 2006 10:33:42 +0100 Received: from news01.csr.com ([10.103.143.38]) by cameurexb01.EUROPE.ROOT.PRI with Microsoft SMTPSVC(6.0.3790.1830); Wed, 20 Sep 2006 10:26:43 +0100 Received: from news01.csr.com (localhost.localdomain [127.0.0.1]) by news01.csr.com (8.13.7/8.13.4) with ESMTP id k8K9QiYZ009893 for ; Wed, 20 Sep 2006 10:26:44 +0100 Received: from csr.com (pws@localhost) by news01.csr.com (8.13.7/8.13.7/Submit) with ESMTP id k8K9QhEF009890 for ; Wed, 20 Sep 2006 10:26:44 +0100 Message-Id: <200609200926.k8K9QhEF009890@news01.csr.com> X-Authentication-Warning: news01.csr.com: pws owned process doing -bs To: zsh users Subject: Re: error in 19.3.1 In-reply-to: <20060919222852.GA46327@dagan.sigpipe.cz> References: <20060919222852.GA46327@dagan.sigpipe.cz> Comments: In-reply-to Roman Neuhauser message dated "Tue, 19 Sep 2006 22:28:52 -0000." Date: Wed, 20 Sep 2006 10:26:43 +0100 From: Peter Stephenson X-OriginalArrivalTime: 20 Sep 2006 09:26:43.0978 (UTC) FILETIME=[E31706A0:01C6DC96] Content-Type: text/plain MIME-Version: 1.0 X-Scanned-By: MailControl A-07-04-02 (www.mailcontrol.com) on 10.67.0.136 Roman Neuhauser wrote: > This is near the end of 19.3.1: (The section numbers aren't particularly easy to trace back to the documentation source, so names are probably more convenient.) > For example: > > zstyle -e ':completion:*' completer ' > if [[ $words[1] = cvs ]]; then > reply=(_complete) > else > reply=(_complete _approximate) > fi' > > uses the value `_complete' for the completer style in most contexts, but > the value `_complete _approximate' when the first word on the command > line is `cvs'. You mean the code should be the other way round? Index: Doc/Zsh/compsys.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compsys.yo,v retrieving revision 1.190 diff -u -r1.190 compsys.yo --- Doc/Zsh/compsys.yo 21 Aug 2006 14:24:49 -0000 1.190 +++ Doc/Zsh/compsys.yo 20 Sep 2006 09:24:53 -0000 @@ -593,9 +593,9 @@ example(zstyle -e ':completion:*' completer ' if [[ $words[1] = cvs ]]; then - reply=(_complete) - else reply=(_complete _approximate) + else + reply=(_complete) fi') uses the value `tt(_complete)' for the tt(completer) style in most -- Peter Stephenson Software Engineer CSR PLC, Churchill House, Cambridge Business Park, Cowley Road Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070 To access the latest news from CSR copy this link into a web browser: http://www.csr.com/email_sig.php