]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Multiple Cases, Quotation Rule Of Thumb):
authorAkim Demaille <akim@epita.fr>
Mon, 10 Jul 2000 08:33:19 +0000 (08:33 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 10 Jul 2000 08:33:19 +0000 (08:33 +0000)
Follow the coding style.

ChangeLog
doc/autoconf.texi

index 6a2fa997ad157f44e5203799965456f91fdbd9da..9862e25048521ec3568e4c83e540698854d57e2e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-10  Akim Demaille  <akim@epita.fr>
+
+       * doc/autoconf.texi (Multiple Cases, Quotation Rule Of Thumb):
+       Follow the coding style.
+
 2000-07-10  Akim Demaille  <akim@epita.fr>
 
        * doc/autoconf.texi (Obsoleting Macros): Is not a subsection of
index b662877f7af1d7667ca3480caa881db86f9aa610..9bde037fcd76dfb2145978ab94c1168800bf62e2 100644 (file)
@@ -5214,14 +5214,17 @@ AC_MSG_CHECKING(how to get file system type)
 fstype=no
 # The order of these tests is important.
 AC_TRY_CPP([#include <sys/statvfs.h>
-#include <sys/fstyp.h>], [AC_DEFINE(FSTYPE_STATVFS) fstype=SVR4])
+#include <sys/fstyp.h>],
+           [AC_DEFINE(FSTYPE_STATVFS) fstype=SVR4])
 if test $fstype = no; then
   AC_TRY_CPP([#include <sys/statfs.h>
-#include <sys/fstyp.h>], [AC_DEFINE(FSTYPE_USG_STATFS) fstype=SVR3])
+#include <sys/fstyp.h>],
+             [AC_DEFINE(FSTYPE_USG_STATFS) fstype=SVR3])
 fi
 if test $fstype = no; then
   AC_TRY_CPP([#include <sys/statfs.h>
-#include <sys/vmount.h>], [AC_DEFINE(FSTYPE_AIX_STATFS) fstype=AIX])
+#include <sys/vmount.h>],
+             [AC_DEFINE(FSTYPE_AIX_STATFS) fstype=AIX])
 fi
 # (more cases omitted here)
 AC_MSG_RESULT($fstype)
@@ -6157,7 +6160,9 @@ AC_TRY_LINK(
 #ifndef tzname /* For SGI.  */
 extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
 #endif],
-[atoi (*tzname);], ac_cv_var_tzname=yes, ac_cv_var_tzname=no)
+            [atoi (*tzname);],
+            [ac_cv_var_tzname=yes],
+            [ac_cv_var_tzname=no])
 @end example
 
 @noindent
@@ -6191,7 +6196,9 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM(
 #ifndef tzname /* For SGI.  */
 extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
 #endif]],
-[atoi (*tzname);])], ac_cv_var_tzname=yes, ac_cv_var_tzname=no)
+                                [atoi (*tzname);])],
+               [ac_cv_var_tzname=yes],
+               [ac_cv_var_tzname=no])
 @end example
 
 @c FIXME: Quadrigraphs and hopeless cases.