1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00

(gettimeofday, one arg or two):

Clarify messages by avoiding double negative.
This commit is contained in:
Richard M. Stallman 1997-10-02 04:33:26 +00:00
parent 4461bfd37f
commit 92f357612e

View 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