From: Paul Eggert Date: Sat, 18 Jun 2011 21:36:22 +0000 (-0700) Subject: * doc/autoconf.texi (File Descriptors): Fix texinfo typo. X-Git-Tag: v2.68b~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ddea209e5240e7d64d54c888df81b29ccebdd3b;p=thirdparty%2Fautoconf.git * doc/autoconf.texi (File Descriptors): Fix texinfo typo. --- diff --git a/ChangeLog b/ChangeLog index 885e545a..aaa16408 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-06-18 Paul Eggert + + * doc/autoconf.texi (File Descriptors): Fix texinfo typo. + 2011-06-14 Eric Blake doc: mention more about ksh cloexec behavior diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 6ec0dc41..637c2722 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -15456,7 +15456,7 @@ containing subshell or command group, rather than relying on that involved in the fork-and-exec which runs a program or script): @example -$ @kbd{echo 'echo hello >&5' >k +$ @kbd{echo 'echo hello >&5' >k} $ @kbd{/bin/sh -c 'exec 5>t; ksh ./k; exec 5>&-; cat t} hello $ @kbd{bash -c 'exec 5>t; ksh ./k; exec 5>&-; cat t}