From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19278 invoked from network); 6 Jan 2006 18:00:33 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 6 Jan 2006 18:00:33 -0000 Received: (qmail 96672 invoked from network); 6 Jan 2006 18:00:27 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 6 Jan 2006 18:00:27 -0000 Received: (qmail 13406 invoked by alias); 6 Jan 2006 18:00:24 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 22125 Received: (qmail 13386 invoked from network); 6 Jan 2006 18:00:23 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 6 Jan 2006 18:00:23 -0000 Received: (qmail 96384 invoked from network); 6 Jan 2006 18:00:23 -0000 Received: from dsl3-63-249-88-2.cruzio.com (HELO dot.blorf.net) (63.249.88.2) by a.mx.sunsite.dk with SMTP; 6 Jan 2006 18:00:21 -0000 Received: by dot.blorf.net (Postfix, from userid 1000) id 257928DDE; Fri, 6 Jan 2006 10:00:19 -0800 (PST) Date: Fri, 6 Jan 2006 10:00:19 -0800 From: Wayne Davison To: zsh-workers@sunsite.dk Subject: Bug in { completion's comma removal Message-ID: <20060106180019.GB10111@dot.blorf.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 I haven't tried to trace this down yet, but I noticed a bug in recent multibyte-enabled zsh versions (including CVS): % touch foo faa % ls f{oo,a # pressing TAB results in: % ls f{oo,aa,_ # (note: _ is the cursor) OK so far... % ls f{oo,aa,}_ # typing } does not remove the comma This bug does not appear in the latest code if I build it without MULTIBYTE_SUPPORT enabled. ..wayne..