]> git.eshelyaron.com Git - emacs.git/commitdiff
(gettimeofday, one arg or two):
authorRichard M. Stallman <rms@gnu.org>
Thu, 2 Oct 1997 04:33:26 +0000 (04:33 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 2 Oct 1997 04:33:26 +0000 (04:33 +0000)
Clarify messages by avoiding double negative.

configure.in

index 33f233d27dd0adb1614256a06a48ec7aafb764f7..b0ad775f183f21ceb02e41ca0c0e1a81ad28d4c8 100644 (file)
@@ -1658,7 +1658,7 @@ if test $emacs_cv_localtime_cache = yes; then
 fi
 
 if test "x$HAVE_TIMEVAL" = xyes; then
-AC_MSG_CHECKING(whether gettimeofday can't accept two arguments)
+AC_MSG_CHECKING(whether gettimeofday can accept two arguments)
 AC_TRY_LINK([
 #ifdef TIME_WITH_SYS_TIME
 #include <sys/time.h>
@@ -1676,8 +1676,8 @@ AC_TRY_LINK([
   struct timezone dummy;
   gettimeofday (&time, &dummy);
 ],
-  [AC_MSG_RESULT(no)],
-  [AC_MSG_RESULT(yes)
+  [AC_MSG_RESULT(yes)],
+  [AC_MSG_RESULT(no)
    AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)])
 fi