summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-06-18 14:36:22 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-06-18 14:36:39 -0700
commit9ddea209e5240e7d64d54c888df81b29ccebdd3b (patch)
tree5e6ea8e6ccb4fcdaa26b98c80c24277e54b9b60c
parent64a4d1799faf2ab8d1359c85c0ca84a036d44b28 (diff)
downloadautoconf-9ddea209e5240e7d64d54c888df81b29ccebdd3b.tar.gz
* doc/autoconf.texi (File Descriptors): Fix texinfo typo.
-rw-r--r--ChangeLog4
-rw-r--r--doc/autoconf.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 885e545a..aaa16408 100644
--- 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
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}