summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-09-16 13:37:38 -0600
committerEric Blake <eblake@redhat.com>2011-09-16 13:37:38 -0600
commit2a9b772222423b28ad741ab74407f680d2caaadd (patch)
tree3d6942f5eb4a85519ba8b772094e196bea9a46bd
parent19951ff75b438115dceeb02ab85564028745c45e (diff)
downloadautoconf-2a9b772222423b28ad741ab74407f680d2caaadd.tar.gz
docs: fix typo in shell example
* doc/autoconf.texi (Shell Substitutions): Fix typo. * THANKS: Update. Reported by Nick Bowler. Signed-off-by: Eric Blake <eblake@redhat.com>
-rw-r--r--ChangeLog7
-rw-r--r--THANKS1
-rw-r--r--doc/autoconf.texi6
3 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 01df9adf..76b283cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-09-16 Eric Blake <eblake@redhat.com>
+
+ docs: fix typo in shell example
+ * doc/autoconf.texi (Shell Substitutions): Fix typo.
+ * THANKS: Update.
+ Reported by Nick Bowler.
+
2011-09-14 Stefano Lattarini <stefano.lattarini@gmail.com>
docs: more details about make VPATH rewriting woes
diff --git a/THANKS b/THANKS
index 51188aad..867c0d8f 100644
--- a/THANKS
+++ b/THANKS
@@ -301,6 +301,7 @@ Nathanael Nerode neroden@gcc.gnu.org
Nelson H. F. Beebe beebe@math.utah.edu
Nicolas Joly njoly@pasteur.fr
Nicolás Lichtmaier jnl@synapsis-sa.com.ar
+Nick Bowler nbowler@elliptictech.com
NightStrike nightstrike@gmail.com
Nishio Futoshi fut_nis@d3.dion.ne.jp
Noah Elliott elliott@hera.llnl.gov
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index 3d990125..f202c102 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -15942,11 +15942,11 @@ then use @samp{$t} as the @var{value}, rather than trying to inline
the expression needing quoting.
@example
-$ @kbd{/bin/sh -c 't="a b\"'\''@}\\"; echo "$@{a-$t@}"'}
+$ @kbd{/bin/sh -c 't="b c\"'\''@}\\"; echo "$@{a-$t@}"'}
b c"'@}\
-$ @kbd{ksh -c 't="a b\"'\''@}\\"; echo "$@{a-$t@}"'}
+$ @kbd{ksh -c 't="b c\"'\''@}\\"; echo "$@{a-$t@}"'}
b c"'@}\
-$ @kbd{bash -c 't="a b\"'\''@}\\"; echo "$@{a-$t@}"'}
+$ @kbd{bash -c 't="b c\"'\''@}\\"; echo "$@{a-$t@}"'}
b c"'@}\
@end example