From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14352 invoked from network); 12 Oct 2008 02:33:42 -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=0.0 required=5.0 tests=none autolearn=unavailable version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 12 Oct 2008 02:33:42 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 63368 invoked from network); 12 Oct 2008 02:33:12 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 12 Oct 2008 02:33:12 -0000 Received: (qmail 27327 invoked by alias); 12 Oct 2008 02:32:56 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25851 Received: (qmail 27300 invoked from network); 12 Oct 2008 02:32:52 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 12 Oct 2008 02:32:52 -0000 Received: from hs-out-0708.google.com (hs-out-0708.google.com [64.233.178.241]) by bifrost.dotsrc.org (Postfix) with ESMTP id 381CB80524C0 for ; Sun, 12 Oct 2008 04:32:48 +0200 (CEST) Received: by hs-out-0708.google.com with SMTP id 23so526939hsn.13 for ; Sat, 11 Oct 2008 19:32:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:mime-version:content-type:content-transfer-encoding :content-disposition:x-google-sender-auth; bh=fSmuq0OyIPkrrNPjWkQ6M0kC41GPncpa7rF9flPYVkE=; b=qlohOkfIuOLClBPlGykQUmoD27OYGYBO8TQD0aZui7XI9jMwRORAYzbRn5MMBxHn1i M5eDqbYp57KzLEc7QjpEx3jsLnk3F3KyC9GVpKKox6hMYmQBoyzmlVj5VO9kRcDUKV9s cj2CBAPEusO2mkDSP1Ze/MZmpSJBH60W/BR0o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition:x-google-sender-auth; b=oetrHEu5A8j94YSaAGbGuhh7NAwg394Gbho4Yj5kbnC/AQoUvcfCCuEQrnMxbiiTxY 3QSmllUB7rSpwxw0s/bGNJAfORIQlJGWYZ9EHq5VkyWln6aHcKSPFceDgJyl3IYvHnDo GTHehkBhIm3W02JZ9Xt6A8E8YSWLMMj8Qq1CQ= Received: by 10.65.145.18 with SMTP id x18mr6872142qbn.22.1223778767653; Sat, 11 Oct 2008 19:32:47 -0700 (PDT) Received: by 10.65.110.15 with HTTP; Sat, 11 Oct 2008 19:32:47 -0700 (PDT) Message-ID: <20a807210810111932r1b32b746l3cca788a383e84ed@mail.gmail.com> Date: Sat, 11 Oct 2008 22:32:47 -0400 From: "Vin Shelton" Sender: ethersoft@gmail.com To: "Zsh Hackers' List" Subject: Regression in braces completion MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: e0b20732aedd28c2 X-Virus-Scanned: ClamAV 0.92.1/8412/Sat Oct 11 14:30:20 2008 on bifrost X-Virus-Status: Clean I just noticed a problem with completion using braces that has apparently been around since at least June. Here's the recipe to reproduce: zsh -f $ touch abcdef abcdefg abcghi $ ls abc{d ==> $ ls abc{def as it should. autoload -U compinit compinit $ ls abc{d ==> $ ls abcdef{ which is not correct. This is under cygwin on windows. I can reproduce this problem with a zsh built on 2008-06-17, but a zsh built on 2008-01-02 does not exhibit this problem. Let me know if you need any more info to reproduce this problem. - Vin