* doc/autoconf.texi (Polymorphic Variables): Fix index entries
for AS_VAR_APPEND, AS_VAR_ARITH.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+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.
@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
@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{$(())}