From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dns.primenet.com.au (dns.primenet.com.au [203.24.36.40]) by coral.primenet.com.au (8.7.5/8.7.3) with ESMTP id OAA00321 for ; Wed, 11 Sep 1996 14:19:20 +1000 (EST) Received: from euclid.skiles.gatech.edu (list@euclid.skiles.gatech.edu [130.207.146.50]) by dns.primenet.com.au (8.7.5/8.7.3) with ESMTP id FAA00695 for ; Wed, 11 Sep 1996 05:27:02 +1000 (EST) Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id PAA11901; Tue, 10 Sep 1996 15:03:59 -0400 (EDT) Resent-Date: Tue, 10 Sep 1996 15:03:59 -0400 (EDT) From: yamagata@nwgpc.kek.jp To: stucki@math.fu-berlin.de Cc: zsh-workers@math.gatech.edu Subject: Re: Is this a bug in globbing In-Reply-To: Your message of "Tue, 10 Sep 1996 00:36:14 +0200 (MET DST)" References: Message-Id: <19960911040205X/yamagata@nwgpc.kek.jp> Date: Wed, 11 Sep 1996 04:02:05 +0900 X-Dispatcher: impost version 0.91 (Jun 5,1996) Resent-Message-ID: <"CjOc72.0.qv2.VkRDo"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/2124 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Hello, > I used a statement 'ls ...' with the pattern 'rc?.d/*[A-Z]' > and got lots of names with 'small' characters at the end ! > It seems so far as if it happenes ONLY IF 'numericglobsort' is set! > Do I overlook something ? Or is that a bug ? > It seems (tested with different [_-_] margins) that > in the set of characters 'case' is ignored ? > This happened on Solaris 2.4, the zsh is Version 3.0.0 > default-(automatic)-configured, compiled with gcc. After automatic configure, there are one or two lines "#define HAVE_STRCOLL 1" in config.h. If you comment out these lines, probably the problem may be solved. // Some OS use strcasecmp in strcoll, in case of absence of locale data used by strcoll(). I am using FreeBSD, it uses strcasecmp in strcoll(). :-) yamagata