]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update comment. SUSV2 and ISO C 99 do specify the effect of setlocale with
authorBruno Haible <bruno@clisp.org>
Tue, 6 Mar 2001 15:05:45 +0000 (15:05 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 6 Mar 2001 15:05:45 +0000 (15:05 +0000)
NULL argument.

intl/ChangeLog
intl/dcigettext.c

index 76158d8e013407a2d86e2c3acc07747f88462170..fc0c1f63d48163e64997556b9c2b3a7aa1176171 100644 (file)
@@ -1,3 +1,7 @@
+2001-02-24  Bruno Haible  <haible@clisp.cons.org>
+
+       * dcigettext.c: Update comment about HAVE_LOCALE_NULL.
+
 2001-02-05  Bruno Haible  <haible@clisp.cons.org>
 
        * libgnuintl.h (LC_MESSAGES): Provide a default value.
index fc1716e42bd0c2028551c75d6c56d1debdbc6511..23255b755e286902e54398096707d6ec9837278d 100644 (file)
@@ -178,9 +178,9 @@ static void *mempcpy PARAMS ((void *dest, const void *src, size_t n));
 /* XPG3 defines the result of `setlocale (category, NULL)' as:
    ``Directs `setlocale()' to query `category' and return the current
      setting of `local'.''
-   However it does not specify the exact format.  And even worse: POSIX
-   defines this not at all.  So we can use this feature only on selected
-   system (e.g. those using GNU C Library).  */
+   However it does not specify the exact format.  Neither do SUSV2 and
+   ISO C 99.  So we can use this feature only on selected systems (e.g.
+   those using GNU C Library).  */
 #ifdef _LIBC
 # define HAVE_LOCALE_NULL
 #endif