+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.
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>.
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