mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 14:00:30 +00:00
localedef: allow %l/%n in postal_fmt [BZ #16983]
ISO 14652/30112 includes %l & %n now, so permit them in our files.
This commit is contained in:
parent
7c84d5ce26
commit
a837257199
@ -1,3 +1,9 @@
|
||||
2016-04-16 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
[BZ #16983]
|
||||
* locale/programs/ld-address.c (address_finish): Update postal_fmt
|
||||
comment. Add "ln" to strchr check on postal_fmt.
|
||||
|
||||
2016-04-16 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* locale/programs/ld-telephone.c (telephone_finish): Add %t to the
|
||||
|
@ -150,8 +150,8 @@ No definition for %s category found"), "LC_ADDRESS"));
|
||||
}
|
||||
else
|
||||
{
|
||||
/* We must check whether the format string contains only the
|
||||
allowed escape sequences. */
|
||||
/* We must check whether the format string contains only the allowed
|
||||
escape sequences. Last checked against ISO 30112 WD10 [2014]. */
|
||||
const char *cp = address->postal_fmt;
|
||||
|
||||
if (*cp == '\0')
|
||||
@ -165,7 +165,7 @@ No definition for %s category found"), "LC_ADDRESS"));
|
||||
if (*++cp == 'R')
|
||||
/* Romanize-flag. */
|
||||
++cp;
|
||||
if (strchr ("afdbshNtreCzTSc%", *cp) == NULL)
|
||||
if (strchr ("nafdbshNtreClzTSc%", *cp) == NULL)
|
||||
{
|
||||
WITH_CUR_LOCALE (error (0, 0, _("\
|
||||
%s: invalid escape `%%%c' sequence in field `%s'"),
|
||||
|
Loading…
Reference in New Issue
Block a user