]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix a couple of index entries in the manual.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 17 Oct 2009 05:12:54 +0000 (07:12 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 17 Oct 2009 05:12:54 +0000 (07:12 +0200)
* doc/autoconf.texi (Polymorphic Variables): Fix index entries
for AS_VAR_APPEND, AS_VAR_ARITH.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
doc/autoconf.texi

index 6d8d51d06986dd418e0088fa795a5d451af5518f..82dd475b700364b795c86806c4967909e472a255 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       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  <ebb9@byu.net>
 
        Fix typos in INSTALL.
index 4685972a3dbc5cf07ba2dc5cdd69e6fa165cbf6e..db8c88ed626fd61f850f0bb263c243d961e5e460 100644 (file)
@@ -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{$(())}