From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10785 invoked from network); 11 Oct 2008 14:03:46 -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; 11 Oct 2008 14:03:46 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 34436 invoked from network); 11 Oct 2008 14:03:36 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 11 Oct 2008 14:03:36 -0000 Received: (qmail 21592 invoked by alias); 11 Oct 2008 14:03:20 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25843 Received: (qmail 17566 invoked from network); 11 Oct 2008 13:48:16 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 11 Oct 2008 13:48:16 -0000 Received: from www890.sakura.ne.jp (www890.sakura.ne.jp [219.94.128.100]) by bifrost.dotsrc.org (Postfix) with ESMTPS id 1B5DA80308BA for ; Sat, 11 Oct 2008 15:48:09 +0200 (CEST) Received: from [192.168.1.10] (pl240.nas932.p-gunma.nttpc.ne.jp [219.102.183.240]) (authenticated bits=0) by www890.sakura.ne.jp (8.13.6/8.13.6) with ESMTP id m9BDlqQm097997 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 11 Oct 2008 22:47:52 +0900 (JST) (envelope-from morita-pub-en-debian@inz.sakura.ne.jp) Message-ID: <48F0AE88.1020307@inz.sakura.ne.jp> Date: Sat, 11 Oct 2008 22:47:52 +0900 From: Morita Sho User-Agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724) MIME-Version: 1.0 To: Clint Adams , 501851@bugs.debian.org, zsh-workers@sunsite.dk Subject: =?UTF-8?B?UmU6IEJ1ZyM1MDE4NTE6IHpzaDogQ29tcGxldGlvbiBmYWlscyBpZiA=?= =?UTF-8?B?YSBkaXJlY3RvcnkgbmFtZSBjb250YWlucyAnKCcsICcpJyBhbmQgJ8SEICcu?= References: <20081010230611.23133.42221.reportbug@debian> <20081010231712.GA20915@scru.org> In-Reply-To: <20081010231712.GA20915@scru.org> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.92.1/8412/Sat Oct 11 14:30:20 2008 on bifrost X-Virus-Status: Clean Thanks for your quick reply. I found that the difference between '()Ą'/[TAB] and '()Ā'/[TAB] is at line 372 of /usr/share/zsh/functions/Completion/Unix/_path_files. tmp1=( $~tmp1 ) 2> /dev/null When I typed '()Ą'/[TAB], tmp1 will be '\(\)Ą/*', and $~tmp1 is expanded to nothing. When I typed '()Ā'/[TAB], tmp1 will be '\(\)Ā/*', and $~tmp1 is expanded to ()Ā/foo. $~tmp1 expansion seems not working correctly for a pattern '\(\)Ą/*'. % ls -R .: ()Ā ()Ą ./()Ā: foo ./()Ą: foo % tmp1='\(\)Ą/*'; print $~tmp1; zsh: no matches found: \(\)Ą/* % tmp1='\(\)Ā/*'; print $~tmp1; ()Ā/foo But `print \(\)Ą/*` is correctly expanded to ()Ą/foo. % print \(\)Ą/* ()Ą/foo Regards, -- Morita Sho