This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26-94-g66ba2e4


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  66ba2e4ae5ab35e1a1cf8ab32f0382dc4270d07c (commit)
      from  1f14d0c3ddce47f7021bbc0862fdb207891345dc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=66ba2e4ae5ab35e1a1cf8ab32f0382dc4270d07c

commit 66ba2e4ae5ab35e1a1cf8ab32f0382dc4270d07c
Author: Julen Ruiz Aizpuru <julenx@gmail.com>
Date:   Mon Aug 14 15:56:00 2017 +0200

    Fix thousands_sep and grouping and use readable ASCII for decimal_point in eu_ES locale
    
    	[BZ #12349]
    	* locales/eu_ES (LC_NUMERIC): Fix thousands_sep and grouping
    	and use readable ASCII for decimal_point.

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 379abfe..81ed6fc 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-14  Julen Ruiz Aizpuru <julenx@gmail.com>
+
+	[BZ #12349]
+	* locales/eu_ES (LC_NUMERIC): Fix thousands_sep and grouping
+	and use readable ASCII for decimal_point.
+
 2017-08-12  Mike FABIAN  <mfabian@redhat.com>
 
 	* locales/es_MX (LC_NUMERIC): Replace thin space with NNBSP as thousands separator.
diff --git a/localedata/locales/eu_ES b/localedata/locales/eu_ES
index 53304f9..5fd8dc6 100644
--- a/localedata/locales/eu_ES
+++ b/localedata/locales/eu_ES
@@ -88,9 +88,9 @@ n_sign_posn          1
 END LC_MONETARY
 
 LC_NUMERIC
-decimal_point        "<U002C>"
-thousands_sep        ""
-grouping             0;0
+decimal_point        ","
+thousands_sep        "."
+grouping             3;3
 END LC_NUMERIC
 
 LC_TIME

-----------------------------------------------------------------------

Summary of changes:
 localedata/ChangeLog     |    6 ++++++
 localedata/locales/eu_ES |    6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]