diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-05-09 15:03:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-05-09 15:03:30 +0000 |
commit | a1d8dc878edd16fe25b54281f36c7fb07ee7110e (patch) | |
tree | 1fe636e820833004b6af660d74103b0e1bfe1fc1 /configure.in | |
parent | 1a8e727bc0b369c983dbf61a48a61c47d648e3af (diff) | |
download | emacs-a1d8dc878edd16fe25b54281f36c7fb07ee7110e.tar.gz |
(emacs_cv_speed_t): Add square brackets for clarity.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 2d48555015a..917b66c4fe7 100644 --- a/configure.in +++ b/configure.in @@ -1426,10 +1426,11 @@ AC_TYPE_SIGNAL dnl Check for speed_t typedef. AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t, -AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;], - emacs_cv_speed_t=yes, emacs_cv_speed_t=no)) + [AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;], + emacs_cv_speed_t=yes, emacs_cv_speed_t=no)]) if test $emacs_cv_speed_t = yes; then - AC_DEFINE(HAVE_SPEED_T, 1, [Define to 1 if `speed_t' is declared by <termios.h>.]) + AC_DEFINE(HAVE_SPEED_T, 1, + [Define to 1 if `speed_t' is declared by <termios.h>.]) fi AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval, |