diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-31 17:44:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-31 17:44:49 +0000 |
commit | 7535b2d92dcdbdc79a26baf28da1f7e2aa1889da (patch) | |
tree | dd23f881127dfbd9cc7bf652bed6ff2df3775d86 /locale/programs/locale.c | |
parent | b0b21dc10b1601e33b688daecbdeaeb5659a8867 (diff) | |
download | glibc-7535b2d92dcdbdc79a26baf28da1f7e2aa1889da.tar.gz |
Update.
* locale/programs/locale.c (print_item): Fix one more problem with
string lists. Patch by Chen Xiangyang <chenxy@opencjk.org>.
* locale/categories.def: Add number of arguments to ctype-map-names
and ctype-class-names entries. Mark era as stringlist.
Diffstat (limited to 'locale/programs/locale.c')
-rw-r--r-- | locale/programs/locale.c | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/locale/programs/locale.c b/locale/programs/locale.c index 0b61467c1f..92d63386fd 100644 --- a/locale/programs/locale.c +++ b/locale/programs/locale.c @@ -524,25 +524,6 @@ show_locale_vars (void) } -/* Some of the "string" we print contain non-printable characters. We - encode them here. */ -static void -print_escaped (const char *string) -{ - const unsigned char *ch; - - ch = string; - while ('\0' != *ch) - { - if (isprint (*ch)) - putchar (*ch); - else - printf("<0x%02x>", *ch); - ++ch; - } -} - - /* Show the information request for NAME. */ static void show_info (const char *name) @@ -556,7 +537,7 @@ show_info (const char *name) case string: if (show_keyword_name) printf ("%s=\"", item->name); - print_escaped (nl_langinfo (item->item_id) ? : ""); + fputs (nl_langinfo (item->item_id) ? : "", stdout); if (show_keyword_name) putchar ('"'); putchar ('\n'); @@ -573,13 +554,13 @@ show_info (const char *name) { val = nl_langinfo (item->item_id + cnt); if (val != NULL) - print_escaped (val); + fputs (val, stdout); putchar (';'); } val = nl_langinfo (item->item_id + cnt); if (val != NULL) - print_escaped (val); + fputs (val, stdout); if (show_keyword_name) putchar ('"'); @@ -590,11 +571,12 @@ show_info (const char *name) { int first = 1; const char *val = nl_langinfo (item->item_id) ? : ""; + int cnt; if (show_keyword_name) printf ("%s=", item->name); - while (*val != '\0') + for (cnt = 0; cnt < item->max && *val != '\0'; ++cnt) { printf ("%s%s%s%s", first ? "" : ";", show_keyword_name ? "\"" : "", val, |