]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Reword Fortran macro documentation.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 4 Mar 2011 20:23:49 +0000 (21:23 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 4 Mar 2011 20:23:49 +0000 (21:23 +0100)
* doc/autoconf.texi (Fortran Compiler): Improve wording for
AC_FC_FREEFORM, AC_FC_FIXEDFORM, and AC_FC_LINE_LENGTH macros.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
doc/autoconf.texi

index bf72bd145ef3e677c97814839c0735f411122d47..a5c06c14c1e5df627a7ef17a16c48eb7748b2fe5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Reword Fortran macro documentation.
+       * doc/autoconf.texi (Fortran Compiler): Improve wording for
+       AC_FC_FREEFORM, AC_FC_FIXEDFORM, and AC_FC_LINE_LENGTH macros.
+
 2011-02-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        config.status: do not quote $SHELL when rerunning configure.
index b011316429078a3843234432c5d62c16ba46cdb6..557d76387e8a700c14fbcf3400a476e896a63c7d 100644 (file)
@@ -8187,10 +8187,9 @@ error message).
 @defmac AC_FC_FREEFORM (@ovar{action-if-success}, @ovar{action-if-failure})
 @acindex{FC_FREEFORM}
 
-The @code{AC_FC_FREEFORM} tries to ensure that the Fortran compiler
-(@code{$FC}) allows free-format source code (as opposed to the older
-fixed-format style from Fortran 77).  If necessary, it may add some
-additional flags to @code{FCFLAGS}.
+Try to ensure that the Fortran compiler (@code{$FC}) allows free-format
+source code (as opposed to the older fixed-format style from Fortran
+77).  If necessary, it may add some additional flags to @code{FCFLAGS}.
 
 This macro is most important if you are using the default @file{.f}
 extension, since many compilers interpret this extension as indicating
@@ -8210,10 +8209,9 @@ message).
 @defmac AC_FC_FIXEDFORM (@ovar{action-if-success}, @ovar{action-if-failure})
 @acindex{FC_FIXEDFORM}
 
-The @code{AC_FC_FIXEDFORM} tries to ensure that the Fortran compiler
-(@code{$FC}) allows the old fixed-format source code (as opposed to
-free-format style).  If necessary, it may add some additional flags to
-@code{FCFLAGS}.
+Try to ensure that the Fortran compiler (@code{$FC}) allows the old
+fixed-format source code (as opposed to free-format style).  If
+necessary, it may add some additional flags to @code{FCFLAGS}.
 
 This macro is needed for some compilers alias names like @command{xlf95}
 which assume free-form source code by default, and in case you want to
@@ -8233,12 +8231,12 @@ message).
   @ovar{action-if-failure})
 @acindex{FC_LINE_LENGTH}
 
-The @code{AC_FC_LINE_LENGTH} macro tries to ensure that the Fortran compiler
-(@code{$FC}) accepts long source code lines.  The @var{length} argument
-may be given as 80, 132, or unlimited, and defaults to 132.  Note that
-line lengths above 254 columns are not portable, and some compilers
-do not accept more than 132 columns at least for fixed format source.
-If necessary, it may add some additional flags to @code{FCFLAGS}.
+Try to ensure that the Fortran compiler (@code{$FC}) accepts long source
+code lines.  The @var{length} argument may be given as 80, 132, or
+unlimited, and defaults to 132.  Note that line lengths above 254
+columns are not portable, and some compilers do not accept more than 132
+columns at least for fixed format source.  If necessary, it may add some
+additional flags to @code{FCFLAGS}.
 
 If @code{AC_FC_LINE_LENGTH} succeeds in compiling fixed-form source, it
 calls @var{action-if-success} (defaults to nothing).  If it fails, it