From: Stefano Lattarini Date: Mon, 8 Aug 2011 17:20:44 +0000 (+0200) Subject: docs: fix minor typos X-Git-Tag: v2.68b~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f36755ebbb1c05530b880c97f228a9c97709d1aa;p=thirdparty%2Fautoconf.git docs: fix minor typos * doc/autoconf.texi (Shell Functions): Fix a couple of minor typos. --- diff --git a/ChangeLog b/ChangeLog index 4d850bd8..6ca51fd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-08 Stefano Lattarini + + docs: fix minor typos + * doc/autoconf.texi (Shell Functions): Fix a couple of minor typos. + 2011-08-04 Stefano Lattarini docs: another Solaris sh bug with redirected `:' diff --git a/doc/autoconf.texi b/doc/autoconf.texi index c6837ebd..7c1818d5 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -16929,11 +16929,11 @@ segmentation fault. To work around the issue, you can use in the execution flow of the function (@pxref{Common Shell Constructs}). Not all shells treat shell functions as simple commands impacted by -@samp{set -e}, for example with Solaris 10 @command{bin/sh}: +@samp{set -e}, for example with Solaris 10 @command{/bin/sh}: @example -$ @kbd{bash -c 'f() @{ return 1; @}; set -e; f; echo oops} -$ @kbd{/bin/sh -c 'f() @{ return 1; @}; set -e; f; echo oops} +$ @kbd{bash -c 'f() @{ return 1; @}; set -e; f; echo oops'} +$ @kbd{/bin/sh -c 'f() @{ return 1; @}; set -e; f; echo oops'} oops @end example