]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi: Various English fixes from Jim.
authorAkim Demaille <akim@epita.fr>
Wed, 19 Jul 2000 09:32:32 +0000 (09:32 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 19 Jul 2000 09:32:32 +0000 (09:32 +0000)
ChangeLog
doc/autoconf.texi

index 950261dd157093fdb8275d0cfdac1beb65bd35f4..372a487b697d8c599c29d01b706e3e2cefcc184a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-19  Akim Demaille  <akim@epita.fr>
+
+       * doc/autoconf.texi: Various English fixes from Jim.
+
 2000-07-19  Akim Demaille  <akim@epita.fr>
 
        * doc/autoconf.texi (Compilers and Preprocessors, Obsolete
index c0fcacc3c46db81a4a611a0606137f08915885b6..5ed000d3b7bb506c49ea1f02124c64abd2903295 100644 (file)
@@ -5965,12 +5965,12 @@ You can refer to any arguments passed to the macro as @samp{$1},
 GNU m4}, for more complete information on writing M4 macros.
 
 Be sure to quote properly both the @var{macro-body} @emph{and} the
-@var{macro-name}, to avoid any problems if the macro happens to be
-already defined.
+@var{macro-name}, to avoid any problems if the macro happens to have
+been previously defined.
 
-Any macro should have a header comment which gives its prototype, and a
-short documentation.  When arguments have default values, display them
-in the prototype.  For instance:
+Each macro should have a header comment which gives its prototype, and a
+brief description.  When arguments have default values, display them in
+the prototype.  For instance:
 
 @example
 # AC_MSG_ERROR(ERROR, [EXIT-STATUS = 1])
@@ -5990,7 +5990,7 @@ use the builtin @code{dnl}: it causes @code{m4} to discard the text
 through the next newline.
 
 Keep in mind that @code{dnl} is rarely needed to introduce comments,
-rather it is useful to get rid of the newlines behind macros which
+rather it is useful to get rid of the newlines following macros that
 produce no output, such as @code{AC_REQUIRE}.
 
 
@@ -6771,11 +6771,11 @@ purpose.  With the @code{s} command, the preferred separator is @samp{/}
 unless @samp{/} itself is used in the command, in which case you should
 use @samp{,}.
 
-@xref{Macro Definitions}, for details on how to define a macro.  If the
-macro is never @code{AC_REQUIRE}'d nor @code{AC_REQUIRE}'s, use
-@code{define}.  In case of doubt, use @code{AC_DEFUN}.  All the
-@code{AC_REQUIRE} should be at the beginning of the macro,
-@code{dnl}'ed.
+@xref{Macro Definitions}, for details on how to define a macro.  If a
+macro doesn't use @code{AC_REQUIRE} and it is expected never to be the
+object of an @code{AC_REQUIRE} directive, then use @code{define}.  In
+case of doubt, use @code{AC_DEFUN}.  All the @code{AC_REQUIRE}
+statements should be at the beginning of the macro, @code{dnl}'ed.
 
 Unless the macro is short, try to leave the closing @samp{])} at the
 beginning of a line, followed by a comment which repeats the name of the