From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3708 invoked by alias); 1 Sep 2010 16:25:05 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 15347 Received: (qmail 28526 invoked from network); 1 Sep 2010 16:25:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.215.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=V2xae3MoyUviyyOS6DcZ670XhvDzVwGdlLDkDnZW98c=; b=qxKm4IY416wFx1BbDPgW7gaeHHKaDfNz38TK7UAmtKSjTYqO107V8xUrw0eMvBO3xe Vq59WfgQP8h8XMJEA8aOFl/DHKS3tWkPHwiTIIxOZvZmDxEXrcFDX15z3x+A3XBqq3P4 3ZvghjetxjsOEWJtXhp4bAIKkjIc4z2rSR2Sw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=lZUZCDeX8rH5aDPq5uJIhFCMuLeJKu3/RkwdoFr1Vqn1qwMuHKndRgy1kqYqHp/VTi Wh+LJWViCEzzlwuUpmSEH0Uf5N7Gnfa+rX3Ds0TRDsfpq02ZZXYZr7RbDqvg5SoK3NVh s4k62+SpSRdIgxdIo4B6xtlfy5wXOCr4b4gkA= MIME-Version: 1.0 In-Reply-To: <20100901155416.GA8509@Lancelot> References: <20100901155416.GA8509@Lancelot> From: =?ISO-8859-1?Q?J=E9r=E9mie_Roquet?= Date: Wed, 1 Sep 2010 18:16:59 +0200 Message-ID: Subject: Re: Bug Report: glob qualifier Lm-1 does not work To: Zsh Users Cc: Roy Zuo Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, 2010/9/1 Roy Zuo : > Some one just tells me that glob qualifier Lm-1 in zsh does not work, and= I > can confirm it is true. Whenever you do > > =A0 =A0ls *(Lm-1) > > it complains "no matches found". Lm+1, Lk-1024, Lk-1, Lm-2 all work well.= The > only thing that does not work is Lm-1. Can't it be because of the minimal file size allowed by your filesystem? I get : $ ls *(Lm-1) zsh: no matches found: *(Lm-1) $ touch foo $ ls *(Lm-1) foo $ echo -n c >| foo $ ls *(Lm-1) zsh: no matches found: *(Lm-1) --=20 J=E9r=E9mie