From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10833 invoked by alias); 26 Jul 2018 09:15:48 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 10314 invoked by uid 89); 26 Jul 2018 09:15:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 spammy= X-HELO: mx1.redhat.com Subject: Re: [PATCH] Keep expected behaviour for [a-z] and [A-z] (Bug 23393). To: Andreas Schwab Cc: Jonathan Nieder , Carlos O'Donell , GNU C Library , Rich Felker , Mike Fabian , Zorro Lang , "Joseph S. Myers" References: <9d6f47ec-f9eb-ead0-889c-3b9aae66551c@redhat.com> <20180726013351.GC217613@aiede.svl.corp.google.com> <02c54107-d38d-885c-2f5e-656315667d19@redhat.com> <20180726021643.GE217613@aiede.svl.corp.google.com> From: Florian Weimer Message-ID: <89aaf377-66a9-6062-a162-8397d199ea1a@redhat.com> Date: Thu, 26 Jul 2018 09:15:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2018-07/txt/msg00879.txt.bz2 On 07/26/2018 10:18 AM, Andreas Schwab wrote: > On Jul 26 2018, Florian Weimer wrote: > >> The bash implementation of glob always uses strcoll/wcscoll ordering when >> globasciirange is not active. It does not use collation element ordering, >> so rearranging collation data does not affect it. > > Why does strcoll not agree with the collation sequence? The collation element ordering is encoded in the _NL_COLLATE_COLLSEQMB and _NL_COLLATE_COLLSEQWC tables, and not the weights used by strcoll. Thanks, Florian