>From 8019107efc8f3780ee13524bb5131a313dc603d6 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 9 Oct 2018 05:54:25 -0600 Subject: [PATCH] doc: use @key{TAB} in texinfo Discussed in https://bugs.gnu.org/22636 . * doc/sed.texi: Use '@address@hidden' instead of '@kbd{tab}' to improve rendering in HTML and info formats. Copyright-paperwork-exempt: Yes --- doc/sed.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/sed.texi b/doc/sed.texi index 03a8d01..4537574 100644 --- a/doc/sed.texi +++ b/doc/sed.texi @@ -2763,8 +2763,8 @@ because it is escaped. @item [a-zA-Z0-9] In the C locale, this matches any ASCII letters or digits. address@hidden [^ @kbd{tab}]\+ -(Here @kbd{tab} stands for a single tab character.) address@hidden [^ @address@hidden +(Here @address@hidden stands for a single tab character.) This matches a string of one or more characters, none of which is a space or a tab. Usually this means a word. @@ -4235,7 +4235,7 @@ technique. @group # delete leading and trailing spaces -y/@kbd{tab}/ / +y/@address@hidden/ / s/^ *// s/ *$// @end group @@ -5055,7 +5055,7 @@ of commenting @command{sed} scripts. @group # Convert words to a's -s/[ @kbd{tab}][ @kbd{tab}]*/ /g +s/[ @address@hidden @address@hidden/ /g s/^/ / s/ [^ ][^ ]*/a /g s/ //g -- 2.11.0