[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Why doesn't this quote properly?
From: |
Paul Eggert |
Subject: |
Re: Why doesn't this quote properly? |
Date: |
Tue, 23 Nov 2004 00:58:20 -0800 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) |
Alexandre Duret-Lutz <address@hidden> writes:
> This chunk looks erroneous to me: the help string mentions $2 but the
> code no longer uses it.
Thanks for catching that. I installed this further patch:
2004-11-23 Paul Eggert <address@hidden>
* doc/autoconf.texi (Pretty Help Strings): Fix typo
in my editing of the previous patch. Problem reported
by Alexandre Duret-Lutz.
Index: autoconf.texi
===================================================================
RCS file: /cvsroot/autoconf/autoconf/doc/autoconf.texi,v
retrieving revision 1.840
retrieving revision 1.841
diff -p -u -r1.840 -r1.841
--- autoconf.texi 22 Nov 2004 23:31:56 -0000 1.840
+++ autoconf.texi 23 Nov 2004 09:01:01 -0000 1.841
@@ -13077,7 +13077,10 @@ 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=no])])
+ [ac_cv_use_$1=no])
+ AC_CACHE_CHECK([whether to use $1],
+ [ac_cv_use_$1],
+ [ac_cv_use_$1=$2])])
@end example
@end defmac
- Re: Why doesn't this quote properly?, Paul Eggert, 2004/11/22
- Re: Why doesn't this quote properly?, Alexandre Duret-Lutz, 2004/11/23
- Re: Why doesn't this quote properly?,
Paul Eggert <=
- Re: Why doesn't this quote properly?, Stepan Kasal, 2004/11/23
- Re: Why doesn't this quote properly?, Paul Eggert, 2004/11/23
- Re: Why doesn't this quote properly?, Akim Demaille, 2004/11/24
- Re: Why doesn't this quote properly?, Ralf Wildenhues, 2004/11/24
- Re: Why doesn't this quote properly?, Paul Eggert, 2004/11/26
- Re: Why doesn't this quote properly?, Stepan Kasal, 2004/11/26
- Re: Why doesn't this quote properly?, Akim Demaille, 2004/11/26
- Re: Why doesn't this quote properly?, Paul Eggert, 2004/11/26
- Re: Why doesn't this quote properly?, Stepan Kasal, 2004/11/25
- Re: Why doesn't this quote properly?, Akim Demaille, 2004/11/25