From: Eric Blake Date: Tue, 11 May 2010 20:13:32 +0000 (-0600) Subject: Fix typo in previous patch. X-Git-Tag: v2.66~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9254d2978b8f805681c19f7bcb64c18fb02e387d;p=thirdparty%2Fautoconf.git Fix typo in previous patch. * doc/autoconf.texi (File Descriptors): Add end '. Reported by Ralf Wildenhues. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 8b4c0f4e..6d640563 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-05-11 Eric Blake + 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. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 28735782..0feb7d06 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -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