From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2214 invoked from network); 14 Oct 2009 22:04:07 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from new-brage.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.254.104) by ns1.primenet.com.au with SMTP; 14 Oct 2009 22:04:07 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 69784 invoked from network); 14 Oct 2009 22:03:59 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 14 Oct 2009 22:03:59 -0000 Received: (qmail 4852 invoked by alias); 14 Oct 2009 22:03:51 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 27310 Received: (qmail 4802 invoked from network); 14 Oct 2009 22:03:50 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 14 Oct 2009 22:03:50 -0000 Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by bifrost.dotsrc.org (Postfix) with ESMTP id 8DCD4805D0A1 for ; Thu, 15 Oct 2009 00:03:42 +0200 (CEST) Received: from relay1.zedat.fu-berlin.de ([130.133.4.67]) by outpost1.zedat.fu-berlin.de (Exim 4.69) for zsh-workers@sunsite.dk with esmtp (envelope-from ) id <1MyBwb-0006RM-PS>; Thu, 15 Oct 2009 00:03:41 +0200 Received: from mail.cis.fu-berlin.de ([160.45.11.138]) by relay1.zedat.fu-berlin.de (Exim 4.69) for zsh-workers@sunsite.dk with esmtp (envelope-from ) id <1MyBwb-0001xH-MH>; Thu, 15 Oct 2009 00:03:41 +0200 Received: by Mail.CIS.FU-Berlin.DE (Exim 4.69) for zsh-workers@sunsite.dk with local (envelope-from ) id <1MyBwb-05TOLc-K1>; Thu, 15 Oct 2009 00:03:41 +0200 Date: Thu, 15 Oct 2009 00:03:41 +0200 From: Holger Weiss To: Zsh Workers Subject: [PATCH] Fix a typo in one of the matcher-list examples Message-ID: <20091014220341.GA81262293@Waran.CIS.FU-Berlin.DE> Mail-Followup-To: Zsh Workers MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-Originating-IP: 160.45.11.138 X-Virus-Scanned: ClamAV 0.94.2/9897/Wed Oct 14 23:14:24 2009 on bifrost X-Virus-Status: Clean s/a-Z/a-z/ --- Doc/Zsh/compsys.yo | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 96a5f76..22ed88d 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -2010,7 +2010,7 @@ specification is prefixed with tt(+), it is added to the existing list. Hence it is possible to create increasingly general specifications without repetition: -example(zstyle ':completion:*' matcher-list '' '+m{a-Z}={A-Z}' '+m{A-Z}={a-z}') +example(zstyle ':completion:*' matcher-list '' '+m{a-z}={A-Z}' '+m{A-Z}={a-z}') It is possible to create match specifications valid for particular completers by using the third field of the context. For example, to -- Holger