diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-01-03 23:43:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-01-03 23:43:35 +0000 |
commit | 2bdae526ad07254a9eb0101b5811291329eb0fac (patch) | |
tree | bbdae1308795d7737bf1a08d9a31d8e64e152b1e | |
parent | 69f6b2394565690a5663ccaac4f5c4e2fb88a81d (diff) | |
download | rtmux-2bdae526ad07254a9eb0101b5811291329eb0fac.tar.gz rtmux-2bdae526ad07254a9eb0101b5811291329eb0fac.tar.bz2 rtmux-2bdae526ad07254a9eb0101b5811291329eb0fac.zip |
More indentation tweaking.
-rw-r--r-- | configure.ac | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7f61f633..f86fe8b7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.6 2011-01-02 15:49:31 nicm Exp $ +# $Id: configure.ac,v 1.7 2011-01-03 23:43:35 nicm Exp $ # Miscellaneous autofoo bullshit. AC_INIT(tmux, 1.5) @@ -271,9 +271,12 @@ AC_COMPILE_IFELSE( ) # Look for fcntl(F_CLOSEM). -AC_CHECK_DECL(F_CLOSEM, - AC_DEFINE(HAVE_FCNTL_CLOSEM), , - [#include <fcntl.h>]) +AC_CHECK_DECL( + F_CLOSEM, + AC_DEFINE(HAVE_FCNTL_CLOSEM), + , + [#include <fcntl.h>] +) # Look for /proc/$$. AC_MSG_CHECKING(for /proc/\$\$) |