From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [PATCH] Fix alphabetic sorting for headlines, tags Date: Mon, 12 Feb 2018 16:47:29 +0100 Message-ID: <87bmguus4u.fsf@nicolasgoaziou.fr> References: <20180206100705.32256-1-seb@wirrsal.net> <87r2ptc813.fsf@nicolasgoaziou.fr> <87sha7g4rz.fsf@wirrsal.net> <87bmgvbiiq.fsf@nicolasgoaziou.fr> <87mv0eiomk.fsf@wirrsal.net> <87sha6uwxw.fsf@nicolasgoaziou.fr> <87sha6xnqk.fsf@wirrsal.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1elGKM-0002oj-I0 for emacs-orgmode@gnu.org; Mon, 12 Feb 2018 10:47:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1elGKJ-0006M4-QQ for emacs-orgmode@gnu.org; Mon, 12 Feb 2018 10:47:34 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:59870) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1elGKJ-0006Kq-JV for emacs-orgmode@gnu.org; Mon, 12 Feb 2018 10:47:31 -0500 In-Reply-To: <87sha6xnqk.fsf@wirrsal.net> ("Sebastian =?utf-8?Q?Reu=C3=9Fe?= =?utf-8?Q?=22's?= message of "Mon, 12 Feb 2018 15:54:11 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Sebastian =?utf-8?Q?Reu=C3=9Fe?= Cc: emacs-orgmode@gnu.org Sebastian Reu=C3=9Fe writes: > Nicolas Goaziou writes: > >> Sebastian Reu=C3=9Fe writes: > >>> The test will error out if the data for the chosen locale isn=E2=80=99t >>> actually present on the system. I chose the =C2=ABen_US=C2=BB locale in= the >>> hopes that this will frequently be installed. I=E2=80=99ll leave it up = to you >>> to decide whether that is acceptable. > >> I used "C" locale instead. I think it is available on every system. So >> basically, the test checks if we are not using string< for comparison. > > It looks like =C2=ABstring-collate-lessp=C2=BB, when used with the POSIX = locale, > is equivalent to =C2=ABstring<=C2=BB. The examples I tried out all came u= p the > same, and [1] (headline =C2=ABLC_COLLATE Category in the POSIX Locale=C2= =BB) says > the POSIX collation ordering is the same as the ASCII codeset. glibc > adheres to this too (cf. /usr/share/i18n/locales/POSIX). True. Somehow, I thought the would differ outside the ASCII range. > In that case the extension to the test case might be better left out. I'm going to remove this test. Thanks for the heads up.