bug-gnulib@gnu.org mirror (unofficial)
 help / color / mirror / Atom feed
From: Paul Eggert <eggert@cs.ucla.edu>
To: TAMUKI Shoichi <tamuki@linet.gr.jp>
Cc: bug-gnulib@gnu.org
Subject: Re: [PATCH] nstrftime: merge glibc strftime changes
Date: Sat, 23 Feb 2019 15:10:38 -0800	[thread overview]
Message-ID: <26affc8b-af8d-64ed-75f8-b2c70a78bd46@cs.ucla.edu> (raw)
In-Reply-To: <201902230559.AA04247@tamuki.linet.gr.jp>

[-- Attachment #1: Type: text/plain, Size: 52 bytes --]

Sure, that's easy enough. I installed the attached.

[-- Attachment #2: 0001-nstrftime-tweak-arg-order.patch --]
[-- Type: text/x-patch, Size: 3677 bytes --]

From 240c92d99b26c67ce3a5799f3e83258501595dc3 Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Sat, 23 Feb 2019 15:07:47 -0800
Subject: [PATCH] nstrftime: tweak arg order

* lib/nstrftime.c (__strftime_internal): Interchange arg order.
All callers changed.  Suggested by TAMUKI Shoichi in:
https://lists.gnu.org/r/bug-gnulib/2019-02/msg00052.html
---
 ChangeLog       |  7 +++++++
 lib/nstrftime.c | 18 +++++++++---------
 2 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 17f41bfd1..5a85496ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2019-02-23  Paul Eggert  <eggert@cs.ucla.edu>
+
+	nstrftime: tweak arg order
+	* lib/nstrftime.c (__strftime_internal): Interchange arg order.
+	All callers changed.  Suggested by TAMUKI Shoichi in:
+	https://lists.gnu.org/r/bug-gnulib/2019-02/msg00052.html
+
 2019-02-23  Bruno Haible  <bruno@clisp.org>
 
 	relocatable-prog: Use wrapper-free installation also on Mac OS X.
diff --git a/lib/nstrftime.c b/lib/nstrftime.c
index a45d809b2..424fb6069 100644
--- a/lib/nstrftime.c
+++ b/lib/nstrftime.c
@@ -418,7 +418,7 @@ iso_week_days (int yday, int wday)
 
 static size_t __strftime_internal (STREAM_OR_CHAR_T *, STRFTIME_ARG (size_t)
                                    const CHAR_T *, const struct tm *,
-                                   int, bool, bool *
+                                   bool, int, bool *
                                    extra_args_spec LOCALE_PARAM);
 
 /* Write information from TP into S according to the format
@@ -433,8 +433,8 @@ my_strftime (STREAM_OR_CHAR_T *s, STRFTIME_ARG (size_t maxsize)
              const struct tm *tp extra_args_spec LOCALE_PARAM)
 {
   bool tzset_called = false;
-  return __strftime_internal (s, STRFTIME_ARG (maxsize) format, tp, 0,
-                              false, &tzset_called extra_args LOCALE_ARG);
+  return __strftime_internal (s, STRFTIME_ARG (maxsize) format, tp, false,
+                              0, &tzset_called extra_args LOCALE_ARG);
 }
 #if defined _LIBC && ! FPRINTFTIME
 libc_hidden_def (my_strftime)
@@ -446,8 +446,8 @@ libc_hidden_def (my_strftime)
 static size_t
 __strftime_internal (STREAM_OR_CHAR_T *s, STRFTIME_ARG (size_t maxsize)
                      const CHAR_T *format,
-                     const struct tm *tp, int yr_spec,
-                     bool upcase, bool *tzset_called
+                     const struct tm *tp, bool upcase,
+                     int yr_spec, bool *tzset_called
                      extra_args_spec LOCALE_PARAM)
 {
 #if defined _LIBC && defined USE_IN_EXTENDED_LOCALE_MODEL
@@ -864,13 +864,13 @@ __strftime_internal (STREAM_OR_CHAR_T *s, STRFTIME_ARG (size_t maxsize)
         subformat:
           {
             size_t len = __strftime_internal (NULL, STRFTIME_ARG ((size_t) -1)
-                                              subfmt, tp, yr_spec,
-                                              to_uppcase, tzset_called
+                                              subfmt, tp, to_uppcase,
+                                              yr_spec, tzset_called
                                               extra_args LOCALE_ARG);
             add (len, __strftime_internal (p,
                                            STRFTIME_ARG (maxsize - i)
-                                           subfmt, tp, yr_spec,
-                                           to_uppcase, tzset_called
+                                           subfmt, tp, to_uppcase,
+                                           yr_spec, tzset_called
                                            extra_args LOCALE_ARG));
           }
           break;
-- 
2.17.1


  reply	other threads:[~2019-02-23 23:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-22  4:08 [PATCH] nstrftime: merge glibc strftime changes Paul Eggert
2019-02-23  5:59 ` TAMUKI Shoichi
2019-02-23 23:10   ` Paul Eggert [this message]
2019-02-24 11:39     ` TAMUKI Shoichi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://lists.gnu.org/mailman/listinfo/bug-gnulib

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=26affc8b-af8d-64ed-75f8-b2c70a78bd46@cs.ucla.edu \
    --to=eggert@cs.ucla.edu \
    --cc=bug-gnulib@gnu.org \
    --cc=tamuki@linet.gr.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).