]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Remove a spurious comma.
authorAkim Demaille <akim@epita.fr>
Mon, 22 Apr 2002 11:07:26 +0000 (11:07 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 22 Apr 2002 11:07:26 +0000 (11:07 +0000)
ChangeLog
THANKS
doc/autoconf.texi

index e56baf6104fe4ce00f29f116b307953a5560eb08..8d48352e63bc3330c0dbe86802f56c8136609fc3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@
 
        Version 2.53a.
 
+2002-04-22  Akim Demaille  <akim@epita.fr>
+
+       * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
+       comma.
+       Reported by Gregory Giannoni.
+
 2002-04-22  Akim Demaille  <akim@epita.fr>
 
        * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
diff --git a/THANKS b/THANKS
index 20b33efca05175542fb36ca31c87bda67750206a..f666cb7cfb241f81b36eb21e8ea5e3fa9a0b0211 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -64,6 +64,7 @@ Godmar Back                 gback@cs.utah.edu
 Gordon Matzigkeit           gord@trick.fig.org
 Graham Jenkins              c714553@vus415.telstra.com.au
 Greg A. Woods               woods@weird.com
+Gregory Giannoni            sand@narguile.org
 Guido Draheim               Guido.Draheim@gmx.de
 Guido Flohr                 gufl0000@stud.uni-sb.de
 Guillermo Gomez             gomez@mi.uni-erlangen.de
index e3c06b204686cf1d9801ddf8b9a42eeab92f710f..0ed6ad1847eb2f1ffae2118496e32c719566026f 100644 (file)
@@ -10770,13 +10770,13 @@ Expands into an help string that looks pretty when the user executes
 Options}).  The following example will make this clearer.
 
 @example
-AC_DEFUN(TEST_MACRO,
-[AC_ARG_WITH(foo,
+AC_DEFUN([TEST_MACRO],
+[AC_ARG_WITH([foo],
              AC_HELP_STRING([--with-foo],
                             [use foo (default is NO)]),
-             ac_cv_use_foo=$withval, ac_cv_use_foo=no),
-AC_CACHE_CHECK(whether to use foo,
-               ac_cv_use_foo, ac_cv_use_foo=no)])
+             [ac_cv_use_foo=$withval], [ac_cv_use_foo=no])
+AC_CACHE_CHECK([whether to use foo],
+               [ac_cv_use_foo], [ac_cv_use_foo=no])])
 @end example
 
 Please note that the call to @code{AC_HELP_STRING} is @strong{unquoted}.