Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 3 Jan 2001 04:02:46 +0000 (04:02 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 3 Jan 2001 04:02:46 +0000 (04:02 +0000)
2001-01-02  Ulrich Drepper  <drepper@redhat.com>

* intl/dcigettext.c (guess_category_value): Rewrite so that LANGUAGE
value is ignored if the selected locale is the C locale.
* intl/tst-gettext.c: Set locale for above change.
* intl/tst-translit.c: Likewise.

ChangeLog
intl/tst-gettext.c
intl/tst-translit.c

index 94934a1..d4c1709 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-01-02  Ulrich Drepper  <drepper@redhat.com>
+
+       * intl/dcigettext.c (guess_category_value): Rewrite so that LANGUAGE
+       value is ignored if the selected locale is the C locale.
+       * intl/tst-gettext.c: Set locale for above change.
+       * intl/tst-translit.c: Likewise.
+
 2001-01-02  Andreas Jaeger  <aj@suse.de>
 
        * libio/wgenops.c (_IO_wdoallocbuf): Use correct wide access macro.
index a83b1d2..1f5e6f1 100644 (file)
@@ -76,6 +76,7 @@ main (int argc, char *argv[])
   setenv ("LC_CTYPE", "non-existing-locale", 1);
   setenv ("LANG", "non-existing-locale", 1);
   setlocale (LC_CTYPE, "de_DE.ISO-8859-1");
+  setlocale (LC_MESSAGES, "de_DE.ISO-8859-1");
   unsetenv ("OUTPUT_CHARSET");
   /* This is the name of the existing domain with a catalog for the
      LC_MESSAGES category.  */
index 5d42ae3..3fa8d4c 100644 (file)
@@ -18,6 +18,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <libintl.h>
+#include <locale.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -31,6 +32,7 @@ main (void)
 
   setenv ("LANGUAGE", "existing-locale", 1);
   unsetenv ("OUTPUT_CHARSET");
+  setlocale (LC_ALL, "en_US.ANSI_X3.4-1968");
   textdomain ("translit");
   bindtextdomain ("translit", OBJPFX "domaindir");