]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
docs: fix typo in shell example
authorEric Blake <eblake@redhat.com>
Fri, 16 Sep 2011 19:37:38 +0000 (13:37 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 16 Sep 2011 19:37:38 +0000 (13:37 -0600)
* doc/autoconf.texi (Shell Substitutions): Fix typo.
* THANKS: Update.
Reported by Nick Bowler.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
THANKS
doc/autoconf.texi

index 01df9adfadc1320248bfcea65e2874ae41a9f643..76b283cdf070890cbdd21075ed202db75acba829 100644 (file)
--- 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 51188aad5303bb302b2197820bc9ca8816a97940..867c0d8fe9adfc27e6d82221e09e61e35fd40bbb 100644 (file)
--- 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
index 3d990125ef01cdae227c93129cd462a80cfadd87..f202c1029d6dad67ab25c0b49f47a0d7a2c8face 100644 (file)
@@ -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