linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* locale.5: update LC_ADDRESS after glibc change
@ 2016-04-18  7:06 Marko Myllynen
       [not found] ` <57148793.5090400-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Marko Myllynen @ 2016-04-18  7:06 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages); +Cc: linux-man, Mike Frysinger

Hi Michael,

This patch updates locale.5 to match the recent glibc change:

https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=a837257199ffab76237385b830cc7b6179fc2f18

---
 man5/locale.5 | 27 +++++++++------------------
 1 file changed, 9 insertions(+), 18 deletions(-)

diff --git a/man5/locale.5 b/man5/locale.5
index 6aa8b9f..da46ef7 100644
--- a/man5/locale.5
+++ b/man5/locale.5
@@ -127,18 +127,13 @@ The following keywords are allowed:
 followed by a string containing field descriptors that define
 the format used for postal addresses in the locale.
 The following field descriptors are recognized:
-.\" From localedata/locales/uk_UA:
 .RS
-.\" .TP
-.\" %n
-.\" 	BUG: %l escape sequence from ISO/IEC 14652:2002 is not supported
-.\"	by glibc
-.\" Person's name, possibly constructed with the
-.\" .B LC_NAME
-.\" .I name_fmt
-.\" keyword.
-.\"
-.\" https://sourceware.org/bugzilla/show_bug.cgi?id=16983
+.TP
+%n
+Person's name, possibly constructed with the
+.B LC_NAME
+.I name_fmt
+keyword (since glibc 2.24).
 .TP 4
 %a
 Care of person, or organization.
@@ -174,13 +169,9 @@ Floor number.
 .TP
 %C
 Country designation, from the <country_post> keyword.
-.\" .TP
-.\" %l
-.\"	 BUG: %l escape sequence from ISO/IEC 14652:2002 is not
-.\"	supported by glibc
-.\" Local township within town or city.
-.\"
-.\" https://sourceware.org/bugzilla/show_bug.cgi?id=16983
+.TP
+%l
+Local township within town or city (since glibc 2.24).
 .TP
 %z
 Zip number, postal code.

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: locale.5: update LC_ADDRESS after glibc change
       [not found] ` <57148793.5090400-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-04-18 12:53   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-04-18 12:53 UTC (permalink / raw)
  To: Marko Myllynen
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man, Mike Frysinger

On 04/18/2016 08:06 AM, Marko Myllynen wrote:
> Hi Michael,
> 
> This patch updates locale.5 to match the recent glibc change:
> 
> https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=a837257199ffab76237385b830cc7b6179fc2f18

Patch applied. Thanks, Marko!

Cheers,

Michael


> ---
>  man5/locale.5 | 27 +++++++++------------------
>  1 file changed, 9 insertions(+), 18 deletions(-)
> 
> diff --git a/man5/locale.5 b/man5/locale.5
> index 6aa8b9f..da46ef7 100644
> --- a/man5/locale.5
> +++ b/man5/locale.5
> @@ -127,18 +127,13 @@ The following keywords are allowed:
>  followed by a string containing field descriptors that define
>  the format used for postal addresses in the locale.
>  The following field descriptors are recognized:
> -.\" From localedata/locales/uk_UA:
>  .RS
> -.\" .TP
> -.\" %n
> -.\" 	BUG: %l escape sequence from ISO/IEC 14652:2002 is not supported
> -.\"	by glibc
> -.\" Person's name, possibly constructed with the
> -.\" .B LC_NAME
> -.\" .I name_fmt
> -.\" keyword.
> -.\"
> -.\" https://sourceware.org/bugzilla/show_bug.cgi?id=16983
> +.TP
> +%n
> +Person's name, possibly constructed with the
> +.B LC_NAME
> +.I name_fmt
> +keyword (since glibc 2.24).
>  .TP 4
>  %a
>  Care of person, or organization.
> @@ -174,13 +169,9 @@ Floor number.
>  .TP
>  %C
>  Country designation, from the <country_post> keyword.
> -.\" .TP
> -.\" %l
> -.\"	 BUG: %l escape sequence from ISO/IEC 14652:2002 is not
> -.\"	supported by glibc
> -.\" Local township within town or city.
> -.\"
> -.\" https://sourceware.org/bugzilla/show_bug.cgi?id=16983
> +.TP
> +%l
> +Local township within town or city (since glibc 2.24).
>  .TP
>  %z
>  Zip number, postal code.
> 
> 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:[~2016-04-18 12:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-18  7:06 locale.5: update LC_ADDRESS after glibc change Marko Myllynen
     [not found] ` <57148793.5090400-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-04-18 12:53   ` 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).