From: Jim Meyering Date: Wed, 26 Mar 2008 09:30:49 +0000 (+0100) Subject: Fix texinfo syntax error. X-Git-Tag: v2.62~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac5e021157088d59f564b311ba3979e050c3af5e;p=thirdparty%2Fautoconf.git Fix texinfo syntax error. * doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/ Signed-off-by: Jim Meyering --- diff --git a/ChangeLog b/ChangeLog index 73b68646..9842c720 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-26 Jim Meyering + + Fix texinfo syntax error. + * doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/ + 2008-03-26 Ralf Wildenhues Warn, not fail on whitespace-only precious variable differences. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 991a714d..5ebf0be4 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