diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-18 16:25:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-18 16:25:42 +0000 |
commit | 643e9936eb83f4c7431072ab60a207de35d382f1 (patch) | |
tree | a67a2e604b705db5bcda8deb69776ec0e8405655 /locale/programs | |
parent | 5491da0dfa50a969aca174742c64e114fe068af4 (diff) | |
download | glibc-643e9936eb83f4c7431072ab60a207de35d382f1.tar.gz glibc-643e9936eb83f4c7431072ab60a207de35d382f1.tar.xz glibc-643e9936eb83f4c7431072ab60a207de35d382f1.zip |
Update.
1999-11-18 Ulrich Drepper <drepper@cygnus.com> * locale/programs/locale.c: Don't handle LC_ALL together with the other categories when printing the value. Patch by Akira YOSHIYAMA <yosshy@tkf.att.ne.jp>. * locale/locale.h: Correct comment about LC_ALL.
Diffstat (limited to 'locale/programs')
-rw-r--r-- | locale/programs/locale.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/locale/programs/locale.c b/locale/programs/locale.c index 775500e44f..36f253aebc 100644 --- a/locale/programs/locale.c +++ b/locale/programs/locale.c @@ -547,7 +547,8 @@ show_locale_vars (void) /* Now all categories in an unspecified order. */ for (cat_no = 0; cat_no < NCATEGORIES; ++cat_no) - get_source (category[cat_no].name); + if (cat_no != LC_ALL) + get_source (category[cat_no].name); /* The last is the LC_ALL value. */ printf ("LC_ALL=%s\n", lcall ? : ""); |