From patchwork Thu Oct 26 08:52:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 23829 Received: (qmail 67102 invoked by alias); 26 Oct 2017 08:52:06 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 67072 invoked by uid 89); 26 Oct 2017 08:52:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=2948, letters X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5403FC047B75 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=mfabian@redhat.com From: Mike FABIAN To: GNU C Library Subject: [committed, PATCH] ug_CN locale: Fix noexpr and yesexpr Date: Thu, 26 Oct 2017 10:52:01 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr by including the first letters of nostr and yesexpr in the regexp. Also make it more readable by using ASCII where possible. From da33d60bbec1279b7918bd8e4de82677575a32b4 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 25 Oct 2017 08:34:21 +0200 Subject: [PATCH 08/19] ug_CN locale: Fix noexpr and yesexpr * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr by including the first letters of nostr and yesexpr in the regexp. Also make it more readable by using ASCII where possible. --- ChangeLog | 6 ++++++ localedata/locales/ug_CN | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e77574aa33..c6c99d91e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-10-25 Mike FABIAN + + * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr + by including the first letters of nostr and yesexpr in the regexp. + Also make it more readable by using ASCII where possible. + 2017-10-25 Mike FABIAN * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including diff --git a/localedata/locales/ug_CN b/localedata/locales/ug_CN index 952750bbbc..761889cbdd 100644 --- a/localedata/locales/ug_CN +++ b/localedata/locales/ug_CN @@ -294,8 +294,8 @@ week 7;19971130;1 END LC_TIME LC_MESSAGES -yesexpr "" -noexpr "" +yesexpr "^[+1yY]" +noexpr "^[-0nN]" yesstr "" nostr "" END LC_MESSAGES -- 2.14.2