From: Eric Blake Date: Fri, 16 Sep 2011 19:37:38 +0000 (-0600) Subject: docs: fix typo in shell example X-Git-Tag: v2.68b~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a9b772222423b28ad741ab74407f680d2caaadd;p=thirdparty%2Fautoconf.git docs: fix typo in shell example * doc/autoconf.texi (Shell Substitutions): Fix typo. * THANKS: Update. Reported by Nick Bowler. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 01df9adf..76b283cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-09-16 Eric Blake + + docs: fix typo in shell example + * doc/autoconf.texi (Shell Substitutions): Fix typo. + * THANKS: Update. + Reported by Nick Bowler. + 2011-09-14 Stefano Lattarini 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