]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update from gnulib.
authorBruno Haible <bruno@clisp.org>
Tue, 22 May 2007 01:12:17 +0000 (01:12 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:49 +0000 (12:14 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/vasnprintf.c
gettext-runtime/libasprintf/ChangeLog
gettext-runtime/libasprintf/vasnprintf.c

index bd02f5ad312103d3f457ec61920aa8c6a6906ad3..d0b627f56e06cc56d86b22f52ba1cc20fb94b6af 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-21  Bruno Haible  <bruno@clisp.org>
+
+       * vasnprintf.c: Update comments.
+
 2007-03-24  Bruno Haible  <bruno@clisp.org>
 
        * tsearch.c [!IN_LIBINTL]: Include search.h instead of tsearch.h.
index 6410128891edeacf34492f771a991182644a40d1..3cecb021631e4c78e20ca0ffc79b6b0239a69964 100644 (file)
@@ -1298,17 +1298,16 @@ VASNPRINTF (CHAR_T *resultbuf, size_t *lengthp, const CHAR_T *format, va_list ar
 # if NEED_PRINTF_INFINITE_DOUBLE
                         || (a.arg[dp->arg_index].type == TYPE_DOUBLE
                             /* The systems (mingw) which produce wrong output
-                               for Inf and -Inf also do so for NaN and -0.0.
-                               Therefore we treat these cases here as well.  */
+                               for Inf, -Inf, and NaN also do so for -0.0.
+                               Therefore we treat this case here as well.  */
                             && is_infinite_or_zero (a.arg[dp->arg_index].a.a_double))
 # endif
 # if NEED_PRINTF_LONG_DOUBLE
                         || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE
 # elif NEED_PRINTF_INFINITE_LONG_DOUBLE
                         || (a.arg[dp->arg_index].type == TYPE_LONGDOUBLE
-                            /* The systems which produce wrong output for Inf
-                               and -Inf also do so for NaN.  Therefore treat
-                               this case here as well.  */
+                            /* Some systems produce wrong output for Inf,
+                               -Inf, and NaN.  */
                             && is_infinitel (a.arg[dp->arg_index].a.a_longdouble))
 # endif
                        ))
index fc6eb939f7a582612ceb94679410ac2645dbe3d6..590460775010522e4c0dbe9fe157864743d735fa 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-21  Bruno Haible  <bruno@clisp.org>
+
+       * vasnprintf.c: Update comments.
+
 2007-05-20  Bruno Haible  <bruno@clisp.org>
 
        * vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
index 6410128891edeacf34492f771a991182644a40d1..3cecb021631e4c78e20ca0ffc79b6b0239a69964 100644 (file)
@@ -1298,17 +1298,16 @@ VASNPRINTF (CHAR_T *resultbuf, size_t *lengthp, const CHAR_T *format, va_list ar
 # if NEED_PRINTF_INFINITE_DOUBLE
                         || (a.arg[dp->arg_index].type == TYPE_DOUBLE
                             /* The systems (mingw) which produce wrong output
-                               for Inf and -Inf also do so for NaN and -0.0.
-                               Therefore we treat these cases here as well.  */
+                               for Inf, -Inf, and NaN also do so for -0.0.
+                               Therefore we treat this case here as well.  */
                             && is_infinite_or_zero (a.arg[dp->arg_index].a.a_double))
 # endif
 # if NEED_PRINTF_LONG_DOUBLE
                         || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE
 # elif NEED_PRINTF_INFINITE_LONG_DOUBLE
                         || (a.arg[dp->arg_index].type == TYPE_LONGDOUBLE
-                            /* The systems which produce wrong output for Inf
-                               and -Inf also do so for NaN.  Therefore treat
-                               this case here as well.  */
+                            /* Some systems produce wrong output for Inf,
+                               -Inf, and NaN.  */
                             && is_infinitel (a.arg[dp->arg_index].a.a_longdouble))
 # endif
                        ))