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.
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
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}.