]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix texinfo syntax error.
authorJim Meyering <meyering@redhat.com>
Wed, 26 Mar 2008 09:30:49 +0000 (10:30 +0100)
committerJim Meyering <meyering@redhat.com>
Wed, 26 Mar 2008 09:31:28 +0000 (10:31 +0100)
* doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/

Signed-off-by: Jim Meyering <meyering@redhat.com>
ChangeLog
doc/autoconf.texi

index 73b686464169572b710ada2cc37fb10aa542756a..9842c720fe8d18b480cb28513a01cf184ca7b248 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-26  Jim Meyering  <meyering@redhat.com>
+
+       Fix texinfo syntax error.
+       * doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/
+
 2008-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Warn, not fail on whitespace-only precious variable differences.
index 991a714da5c15cc45310352b3655e91db112b2cb..5ebf0be422cd304d9e9c88ebee977ae88b230ce4 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