2004-11-26 Stepan Kasal * doc/autoconf.texi (Pretty Help Strings): Fix the quoting in the examples. Index: doc/autoconf.texi =================================================================== RCS file: /cvsroot/autoconf/autoconf/doc/autoconf.texi,v retrieving revision 1.842 diff -u -r1.842 autoconf.texi --- doc/autoconf.texi 23 Nov 2004 19:11:56 -0000 1.842 +++ doc/autoconf.texi 26 Nov 2004 07:41:04 -0000 @@ -13053,8 +13053,8 @@ AC_ARG_WITH(foo, [AS_HELP_STRING(--with-foo, [use foo (default is no)])], - ac_cv_use_foo=$withval, - ac_cv_use_foo=no) + [ac_cv_use_foo=$withval], + [ac_cv_use_foo=no]) @end example The second argument of @code{AS_HELP_STRING} is @@ -13076,8 +13076,8 @@ AC_DEFUN([MY_ARG_WITH], [AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [use $1 (default is $2)])], - ac_cv_use_$1=$withval, - ac_cv_use_$1=$2)]) + [ac_cv_use_[]$1=$withval], + [ac_cv_use_[]$1=$2])]) @end example @end defmac