From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 124946 invoked by alias); 26 Jul 2018 07:42:45 -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 124934 invoked by uid 89); 26 Jul 2018 07:42:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham 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: Jonathan Nieder , Carlos O'Donell Cc: 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: Date: Thu, 26 Jul 2018 07:42: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: <20180726021643.GE217613@aiede.svl.corp.google.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2018-07/txt/msg00876.txt.bz2 On 07/26/2018 04:16 AM, Jonathan Nieder wrote: > Looking over > https://salsa.debian.org/glibc-team/glibc/tree/sid/debian/patches/localedata > andhttps://salsa.debian.org/glibc-team/glibc/tree/sid/debian/patches/locale, > I don't see any obvious culprits. Anyway, please just take this as more > feedback in favor of your approach. > > See the user reports merged with https://bugs.debian.org/301717. 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. This means that the changes discussed here will not affect bash (well, the glob part at least). Thanks, Florian