aboutsummaryrefslogtreecommitdiff
path: root/release/doc/share/misc
diff options
context:
space:
mode:
authorSimon L. B. Nielsen <simon@FreeBSD.org>2009-10-04 16:30:33 +0000
committerSimon L. B. Nielsen <simon@FreeBSD.org>2009-10-04 16:30:33 +0000
commita7835d55789d1100d12c2940f57430e5d22df9b5 (patch)
tree58cb50a11d1d6092db775fa33718e4723aa61359 /release/doc/share/misc
parent45c607224938dd071b2ec5398ea64e547939d665 (diff)
downloadsrc-a7835d55789d1100d12c2940f57430e5d22df9b5.tar.gz
src-a7835d55789d1100d12c2940f57430e5d22df9b5.zip
In lists, if there is a Li command remove it. This fixes markup for
uath(4). MFC after: 3 days Reported by: Warren Block <wblock at wonkity.com>
Notes
Notes: svn path=/head/; revision=197747
Diffstat (limited to 'release/doc/share/misc')
-rw-r--r--release/doc/share/misc/man2hwnotes.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/doc/share/misc/man2hwnotes.pl b/release/doc/share/misc/man2hwnotes.pl
index b5ec96971a1a..2fbc06601f34 100644
--- a/release/doc/share/misc/man2hwnotes.pl
+++ b/release/doc/share/misc/man2hwnotes.pl
@@ -252,6 +252,10 @@ sub parse {
$txt =~ s/ Ta /\t/g;
$txt =~ s/([^\t]+)\t.*/$1/;
}
+
+ # Remove Li commands
+ $txt =~ s/^Li //g;
+
parabuf_addline(\%mdocvars, normalize($txt));
} elsif (/^Bl/) {
$mdocvars{isin_list} = 1;