* [PATCH] locale.5: refer to strftime(3) where appropriate
@ 2015-06-09 14:18 Marko Myllynen
[not found] ` <5576F5C8.7020903-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Marko Myllynen @ 2015-06-09 14:18 UTC (permalink / raw)
To: Michael Kerrisk (man-pages); +Cc: linux-man
Hi Michael,
the relationship between the locale time format syntax
and strftime() cannot be considered as obvious.
---
man5/locale.5 | 22 +++++++++++++++++-----
1 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/man5/locale.5 b/man5/locale.5
index 374f6b2..2a2edc1 100644
--- a/man5/locale.5
+++ b/man5/locale.5
@@ -1106,16 +1106,25 @@ strings.
This should be left empty for locales not using AM/PM convention.
.TP
.I d_t_fmt
-followed by the appropriate date and time format.
+followed by the appropriate date and time format
+(for syntax, see
+.BR strftime ()).
.TP
.I d_fmt
-followed by the appropriate date format.
+followed by the appropriate date format
+(for syntax, see
+.BR strftime ()).
.TP
.I t_fmt
-followed by the appropriate time format.
+followed by the appropriate time format
+(for syntax, see
+.BR strftime ()).
.TP
.I t_fmt_ampm
-followed by the appropriate time format when using 12h clock format.
+followed by the appropriate time format
+(for syntax, see
+.BR strftime ())
+when using 12h clock format.
This should be left empty for locales not using AM/PM convention.
.TP
.I week
@@ -1169,7 +1178,9 @@ Right-left from top.
.TP
.I date_fmt
followed by the appropriate date representation for
-.BR date (1).
+.BR date (1)
+(for syntax, see
+.BR strftime ()).
.TP
.I alt_digits
followed by the alternative digits used for date and time in the locale.
@@ -1244,6 +1255,7 @@ This manual page isn't complete.
.BR localeconv (3),
.BR newlocale (3),
.BR setlocale (3),
+.BR strftime (3),
.BR uselocale (3),
.BR charmap (5),
.BR charsets (7),
Thanks,
--
Marko Myllynen
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] locale.5: refer to strftime(3) where appropriate
[not found] ` <5576F5C8.7020903-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-06-12 18:18 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-06-12 18:18 UTC (permalink / raw)
To: myllynen-H+wXaHxf7aLQT0dZR+AlfA
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man
On 06/09/2015 04:18 PM, Marko Myllynen wrote:
> Hi Michael,
>
> the relationship between the locale time format syntax
> and strftime() cannot be considered as obvious.
Thanks, Marko. Applied. One point, though: the references should
include the section number. I'll fix that.
Cheers,
Michael
> ---
> man5/locale.5 | 22 +++++++++++++++++-----
> 1 files changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/man5/locale.5 b/man5/locale.5
> index 374f6b2..2a2edc1 100644
> --- a/man5/locale.5
> +++ b/man5/locale.5
> @@ -1106,16 +1106,25 @@ strings.
> This should be left empty for locales not using AM/PM convention.
> .TP
> .I d_t_fmt
> -followed by the appropriate date and time format.
> +followed by the appropriate date and time format
> +(for syntax, see
> +.BR strftime ()).
> .TP
> .I d_fmt
> -followed by the appropriate date format.
> +followed by the appropriate date format
> +(for syntax, see
> +.BR strftime ()).
> .TP
> .I t_fmt
> -followed by the appropriate time format.
> +followed by the appropriate time format
> +(for syntax, see
> +.BR strftime ()).
> .TP
> .I t_fmt_ampm
> -followed by the appropriate time format when using 12h clock format.
> +followed by the appropriate time format
> +(for syntax, see
> +.BR strftime ())
> +when using 12h clock format.
> This should be left empty for locales not using AM/PM convention.
> .TP
> .I week
> @@ -1169,7 +1178,9 @@ Right-left from top.
> .TP
> .I date_fmt
> followed by the appropriate date representation for
> -.BR date (1).
> +.BR date (1)
> +(for syntax, see
> +.BR strftime ()).
> .TP
> .I alt_digits
> followed by the alternative digits used for date and time in the locale.
> @@ -1244,6 +1255,7 @@ This manual page isn't complete.
> .BR localeconv (3),
> .BR newlocale (3),
> .BR setlocale (3),
> +.BR strftime (3),
> .BR uselocale (3),
> .BR charmap (5),
> .BR charsets (7),
>
> Thanks,
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-12 18:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-09 14:18 [PATCH] locale.5: refer to strftime(3) where appropriate Marko Myllynen
[not found] ` <5576F5C8.7020903-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-06-12 18:18 ` Michael Kerrisk (man-pages)
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 NNTP newsgroup(s).