From: Eric Blake Date: Wed, 26 Mar 2008 12:07:41 +0000 (-0600) Subject: Typo fix. X-Git-Tag: v2.62~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27eace530230d6909a275fdbd43cf48d0a64184d;p=thirdparty%2Fautoconf.git Typo fix. * doc/autoconf.texi (Limitations of Usual Tools) : Fix typos in last patch. Reported by Ralf Wildenhues. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 9842c720..8be5d0ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-03-26 Eric Blake + + * doc/autoconf.texi (Limitations of Usual Tools) : Fix + typos in last patch. + Reported by Ralf Wildenhues. + 2008-03-26 Jim Meyering Fix texinfo syntax error. @@ -22,7 +28,7 @@ 2008-03-26 Eric Blake Document busybox sed bug. - * doc/autoconf.texi (Limitations of Usual Tools): Mention + * doc/autoconf.texi (Limitations of Usual Tools) : Mention restrictions when using back-references. Reported by Vincent Lefevre: . diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 5ebf0be4..dc06bab9 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -15398,9 +15398,9 @@ an empty regular expression; the workaround is repeating the regular expression. @example -@kbd{echo abc | busybox sed '/a\(b\)c/ s//\1/'} +$ @kbd{echo abc | busybox sed '/a\(b\)c/ s//\1/'} sed: No previous regexp. -@kbd{echo abc | busybox sed '/a\(b\)c/ s/a\(b\)c/\1/'} +$ @kbd{echo abc | busybox sed '/a\(b\)c/ s/a\(b\)c/\1/'} b @end example