+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.
# 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
))
+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
# 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
))