From: Ralf Wildenhues Date: Sat, 17 Oct 2009 05:12:54 +0000 (+0200) Subject: Fix a couple of index entries in the manual. X-Git-Tag: v2.65~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4d24c2af2679e6a9cd4b2f9a9f56eb65a08dbfd;p=thirdparty%2Fautoconf.git Fix a couple of index entries in the manual. * doc/autoconf.texi (Polymorphic Variables): Fix index entries for AS_VAR_APPEND, AS_VAR_ARITH. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 6d8d51d0..82dd475b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-10-17 Ralf Wildenhues + + Fix a couple of index entries in the manual. + * doc/autoconf.texi (Polymorphic Variables): Fix index entries + for AS_VAR_APPEND, AS_VAR_ARITH. + 2009-10-15 Eric Blake Fix typos in INSTALL. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 4685972a..db8c88ed 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -13161,7 +13161,7 @@ echo "$tmp"])]) @end defmac @defmac AS_VAR_APPEND (@var{var}, @var{text}) -@asindex{APPEND} +@asindex{VAR_APPEND} Emit shell code to append the shell expansion of @var{text} to the end of the current contents of the polymorphic shell variable @var{var}, taking advantage of shells that provide the @samp{+=} extension for more @@ -13186,7 +13186,7 @@ expansion. @end defmac @defmac AS_VAR_ARITH (@var{var}, @var{expression}) -@asindex{ARITH} +@asindex{VAR_ARITH} Emit shell code to compute the arithmetic expansion of @var{expression}, assigning the result as the contents of the polymorphic shell variable @var{var}. The code takes advantage of shells that provide @samp{$(())}