From 8e128ebf42e16c8631f971a68f188c30962818be Mon Sep 17 00:00:00 2001
From: Bruno Haible <bruno@clisp.org>
Date: Wed, 5 Dec 2007 22:38:39 +0100
Subject: [PATCH] Update comments after last change.

---
 m4/frexp.m4 | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/m4/frexp.m4 b/m4/frexp.m4
index ca293b4af1..ce031e701b 100644
--- a/m4/frexp.m4
+++ b/m4/frexp.m4
@@ -88,7 +88,7 @@ AC_DEFUN([gl_FUNC_FREXP_NO_LIBM],
 ])
 
 dnl Test whether frexp() works also on denormalized numbers (this fails e.g. on
-dnl NetBSD 3.0) and on infinite numbers (this fails e.g. on IRIX 6.5).
+dnl NetBSD 3.0) and on infinite numbers (this fails e.g. on IRIX 6.5 and mingw).
 AC_DEFUN([gl_FUNC_FREXP_WORKS],
 [
   AC_REQUIRE([AC_PROG_CC])
@@ -125,9 +125,8 @@ int main()
   return 0;
 }], [gl_cv_func_frexp_works=yes], [gl_cv_func_frexp_works=no],
       [case "$host_os" in
-         netbsd* | irix*) gl_cv_func_frexp_works="guessing no";;
-         mingw*)          gl_cv_func_frexp_works="guessing no";;
-         *)               gl_cv_func_frexp_works="guessing yes";;
+         netbsd* | irix* | mingw*) gl_cv_func_frexp_works="guessing no";;
+         *)                        gl_cv_func_frexp_works="guessing yes";;
        esac
       ])
     ])
-- 
2.39.5