]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (File Descriptors): Fix texinfo typo.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 21:36:22 +0000 (14:36 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 21:36:39 +0000 (14:36 -0700)
ChangeLog
doc/autoconf.texi

index 885e545a56f7a881a065ce140d0db1e28589bfa4..aaa16408a45fec9de1b85dee7d3308dc545485d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-18  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * doc/autoconf.texi (File Descriptors): Fix texinfo typo.
+
 2011-06-14  Eric Blake  <eblake@redhat.com>
 
        doc: mention more about ksh cloexec behavior
index 6ec0dc41fb99593289c8d3738c005542141d514b..637c272298239f1c052e3a2bdaeb97684f9dc12a 100644 (file)
@@ -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}