From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15219 invoked from network); 27 May 2009 16:30:56 -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=AWL,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; 27 May 2009 16:30:56 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 49355 invoked from network); 27 May 2009 16:30:27 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 27 May 2009 16:30:27 -0000 Received: (qmail 27543 invoked by alias); 27 May 2009 16:30:18 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 27000 Received: (qmail 27533 invoked from network); 27 May 2009 16:30:17 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 27 May 2009 16:30:17 -0000 Received: from mail-fx0-f157.google.com (mail-fx0-f157.google.com [209.85.220.157]) by bifrost.dotsrc.org (Postfix) with ESMTP id B915A8027106 for ; Wed, 27 May 2009 18:30:14 +0200 (CEST) Received: by fxm1 with SMTP id 1so4527066fxm.45 for ; Wed, 27 May 2009 09:30:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=dbPxsJ4VUdV0cPPF4+zk8r6YHv00j8P2H9E/neyTLN8=; b=s6NMlaqhBdsIqLptilgzXJpDz/57bPRkLF2c0cA570I5Wwqap2SysSfBKSPZ2hXSRt dCOOaXx0GGnFlB44mcynSN1pk++/ewq5J8l+5OAtBaGZRIHOqcFz+4wUCpHAiQ2IzTAe GevK58r7cpG3ywosHCOfaPybJaxgk33QMUXhE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=hvGpMrKl99qO5oXzUzh0WTkxSvSxI6SvP6l7LJ3z+zJ8F8d8g0Y0VtkznfLxizAQJm F1dpRYNPP/fsA+JWV9ObsY1WvYySF7SXLjUXwFd8Mrn/LfbdyyhwwXrONz3A2ObOCKy5 V9lxt5aJYzmziHg2v346LBLJP/EUzfwVOCEEE= MIME-Version: 1.0 Received: by 10.204.53.72 with SMTP id l8mr118635bkg.171.1243441813647; Wed, 27 May 2009 09:30:13 -0700 (PDT) In-Reply-To: <20090406100929.505617e2@news01> References: <1238890030-4683-1-git-send-email-ft@bewatermyfriend.org> <090404193718.ZM19801@torch.brasslantern.com> <20090405191304.1908fca8@pws-pc> <090405151115.ZM13159@torch.brasslantern.com> <20090406100929.505617e2@news01> Date: Wed, 27 May 2009 18:30:13 +0200 Message-ID: <2d460de70905270930j681da6a5kf7848d67d89f0c69@mail.gmail.com> Subject: Re: PATCH: Add CORRECT_NOCOMPSYS option From: Richard Hartmann To: Peter Stephenson Cc: zsh-workers@sunsite.dk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV 0.94.2/9397/Wed May 27 16:48:50 2009 on bifrost X-Virus-Status: Clean On Mon, Apr 6, 2009 at 11:09, Peter Stephenson wrote: > I added the sentence > > =C2=A0The pattern does not apply the correction > =C2=A0of file names, as applied by the tt(CORRECT_ALL) option (so with th= e > =C2=A0example just given files beginning with `tt(_)' in the current > =C2=A0directory would still be completed). Just to be certain: A binary called _foo would never be considered for spelling correction in this case? richih@titanium ~ % echo $CORRECT_IGNORE _* richih@titanium ~ % pwd /home/richih richih@titanium ~ % which _foo /bin/_foo richih@titanium ~ % _fo zsh: command not found: _fo richih@titanium ~ % foo zsh: command not found: foo richih@titanium ~ % Richard