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.28.9000-550-g7395f3a


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  7395f3a0efad9fc51bb54fa383ef6524702e0c49 (commit)
      from  010fe2317732b009e096cba9df14d5a56ec28de9 (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=7395f3a0efad9fc51bb54fa383ef6524702e0c49

commit 7395f3a0efad9fc51bb54fa383ef6524702e0c49
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Mon Dec 31 00:29:53 2018 +0100

    en_US: define date_fmt (bug 24046)
    
    The en_US locale use a 12h am/pm format in both d_fmt and d_t_fmt, which
    is correct, but does not define date_fmt. This causes the default value
    to be used, which is in 24h format.
    
    This patch adds the date_fmt entry to the en_US locale with the same
    value as d_t_fmt as the latter already includes the timezone.
    
    Changelog
    	[BZ #24046]
    	* localedata/locales/en_US (date_fmt): Add, set to
    	"%a %d %b %Y %r %Z".

diff --git a/ChangeLog b/ChangeLog
index 65f63ac..cf85b26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-01-07  Aurelien Jarno  <aurelien@aurel32.net>
+
+	[BZ #24046]
+	* localedata/locales/en_US (date_fmt): Add, set to
+	"%a %d %b %Y %r %Z".
+
 2019-01-07  Florian Weimer  <fweimer@redhat.com>
 
 	[BZ #24063]
diff --git a/localedata/locales/en_US b/localedata/locales/en_US
index 5e2b365..7a3f5dc 100644
--- a/localedata/locales/en_US
+++ b/localedata/locales/en_US
@@ -117,6 +117,9 @@ t_fmt   "%r"
 % Appropriate AM/PM time representation (%r)
 t_fmt_ampm "%I:%M:%S %p"
 %
+% Appropriate date and time representation for date(1)
+date_fmt "%a %d %b %Y %r %Z"
+%
 % Strings for AM/PM
 %
 am_pm	"AM";"PM"

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

Summary of changes:
 ChangeLog                |    6 ++++++
 localedata/locales/en_US |    3 +++
 2 files changed, 9 insertions(+), 0 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]