]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix typo in previous patch.
authorEric Blake <eblake@redhat.com>
Tue, 11 May 2010 20:13:32 +0000 (14:13 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 11 May 2010 20:13:32 +0000 (14:13 -0600)
* doc/autoconf.texi (File Descriptors): Add end '.
Reported by Ralf Wildenhues.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
doc/autoconf.texi

index 8b4c0f4e792b9b1c78398f006d530ded8fcd896a..6d640563960e35370ac79f0f79650e8b290cffb4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-05-11  Eric Blake  <eblake@redhat.com>
 
+       Fix typo in previous patch.
+       * doc/autoconf.texi (File Descriptors): Add end '.
+       Reported by Ralf Wildenhues.
+
        Mention how to silence program probes.
        * doc/autoconf.texi (File Descriptors): Document how to silence a
        program probe.
index 28735782761657cea11a139e7f599fcb1d62d2ef..0feb7d06608b5e98bf1ef4485caf0df9e5c6be4e 100644 (file)
@@ -14799,9 +14799,9 @@ redirections.  Therefore, to silently check whether a program exists, it
 is necessary to perform redirections on a subshell:
 
 @example
-$ @kbd{/bin/sh -c 'nosuch 2>/dev/null}
+$ @kbd{/bin/sh -c 'nosuch 2>/dev/null'}
 nosuch: not found
-$ @kbd{/bin/sh -c '(nosuch) 2>/dev/null}
+$ @kbd{/bin/sh -c '(nosuch) 2>/dev/null'}
 $ @kbd{bash -c 'nosuch 2>/dev/null'}
 @end example