From: Akim Demaille Date: Mon, 3 Apr 2000 11:19:22 +0000 (+0000) Subject: Fix typo. X-Git-Tag: autoconf-2.50~979 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f0e1b340107d13fe270fef8a51610c5adaf9c8e;p=thirdparty%2Fautoconf.git Fix typo. --- diff --git a/THANKS b/THANKS index 76c36fdd1..2a15b3e75 100644 --- a/THANKS +++ b/THANKS @@ -80,6 +80,7 @@ Michael Schoene mrs@mlc.de Mike Hopkirk hops@sco.com Mike Stump mrs@wrs.com Miles Bader miles@gnu.ai.mit.edu +Morten Eriksen mortene@sim.no Nicolas Joly njoly@pasteur.fr Noah Elliott elliott@hera.llnl.gov Noah Friedman friedman@gnu.ai.mit.edu diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 50bb1c1aa..ce2e99a7b 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -5559,7 +5559,7 @@ Options}). The following example will make this clearer. @example AC_DEFUN(TEST_MACRO, [AC_ARG_WITH(foo, - AC_HELP_STRING([--with-foo], [use foo (default is NO)], + 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)]) @end example