From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5554 invoked from network); 17 Aug 2007 14:55:55 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.1 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 17 Aug 2007 14:55:55 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 78529 invoked from network); 17 Aug 2007 14:55:49 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 17 Aug 2007 14:55:49 -0000 Received: (qmail 28534 invoked by alias); 17 Aug 2007 14:55:47 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23770 Received: (qmail 28525 invoked from network); 17 Aug 2007 14:55:46 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 17 Aug 2007 14:55:46 -0000 Received: (qmail 78368 invoked from network); 17 Aug 2007 14:55:46 -0000 Received: from vms040pub.verizon.net (206.46.252.40) by a.mx.sunsite.dk with SMTP; 17 Aug 2007 14:55:39 -0000 Received: from torch.brasslantern.com ([71.116.91.65]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPA id <0JMX00C1BAS57YL2@vms040.mailsrvcs.net> for zsh-workers@sunsite.dk; Fri, 17 Aug 2007 09:55:19 -0500 (CDT) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id l7HEtGZc026690; Fri, 17 Aug 2007 07:55:17 -0700 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id l7HEtFQp026689; Fri, 17 Aug 2007 07:55:15 -0700 Date: Fri, 17 Aug 2007 07:55:15 -0700 From: Bart Schaefer Subject: Re: Bug#419832: zsh: expanding non-ASCII filenames with In-reply-to: <20070817152210.6bb9559b@news01.csr.com> To: zsh-workers@sunsite.dk Cc: 419832-forwarded@bugs.debian.org, Alan Curry Message-id: <070817075515.ZM26686@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: quoted-printable References: <20070817001222.GA19399@scowler.net> <200708170905.l7H9521T1534406@shell01.TheWorld.com> <20070817120844.GA9936@scowler.net> <20070817152210.6bb9559b@news01.csr.com> Comments: In reply to Peter Stephenson "Re: Bug#419832: zsh: expanding non-ASCII filenames with " (Aug 17, 3:22pm) On Aug 17, 3:22pm, Peter Stephenson wrote: } Subject: Re: Bug#419832: zsh: expanding non-ASCII filenames with } } On Fri, 17 Aug 2007 08:08:44 -0400 } Clint Adams wrote: } > What's worse is that if you `touch a b$'\300' c` in an empty directory, } > cat * will only expand to "a b". }=20 } I can believe there's some logic missing here, but it's not currently } clear to me here what. Could you post an explicit recipe for } getting from an unconfigured shell to an expansion that doesn't } (somehow) display all the elements? This is a problem with old compctl, not compsys. With compinit run and LANG=3DC and/or "unset LANG" I get: schaefer<504> cat * schaefer<504> cat a Completing expansions a b$'\300' c=20=20=20=20=20=20=20 Completing all expansions a b$'\300' c Completing original * With LANG=3Den_US I get: schaefer<506> cat * schaefer<506> cat a Completing expansions a b=C0 c=20 Completing all expansions a b=C0 c Completing original * With "compsys" turned off (old compctl completion) I get the something sensible when LANG=3Den_US: torch% cat * torch% cat a b=C0 c But the bug appears with LANG unset: torch% cat* torch% cat a b So the recipe PWS wants is just to run "zsh -f".