]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Typo fix.
authorEric Blake <ebb9@byu.net>
Wed, 26 Mar 2008 12:07:41 +0000 (06:07 -0600)
committerEric Blake <ebb9@byu.net>
Wed, 26 Mar 2008 12:10:19 +0000 (06:10 -0600)
* doc/autoconf.texi (Limitations of Usual Tools) <sed>: Fix
typos in last patch.
Reported by Ralf Wildenhues.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
doc/autoconf.texi

index 9842c720fe8d18b480cb28513a01cf184ca7b248..8be5d0efdb09e1710708d8c71e8cf7d0b0f18abb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-26  Eric Blake  <ebb9@byu.net>
+
+       * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Fix
+       typos in last patch.
+       Reported by Ralf Wildenhues.
+
 2008-03-26  Jim Meyering  <meyering@redhat.com>
 
        Fix texinfo syntax error.
@@ -22,7 +28,7 @@
 2008-03-26  Eric Blake  <ebb9@byu.net>
 
        Document busybox sed bug.
-       * doc/autoconf.texi (Limitations of Usual Tools): Mention
+       * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Mention
        restrictions when using back-references.
        Reported by Vincent Lefevre:
        <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13013>.
index 5ebf0be422cd304d9e9c88ebee977ae88b230ce4..dc06bab95de0b6c313f5c56dbe035e0056b037d0 100644 (file)
@@ -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