aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2012-01-19 17:29:54 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2012-01-19 17:29:54 +0000
commitb2b60b450cec749d7d08b64e1654b464804ada53 (patch)
tree448fb1f92519df130d1e96da11479525e1dd190e /release
parent5bcd25de3efd15fd4943f6fcf492bca806b04c74 (diff)
downloadsrc-b2b60b450cec749d7d08b64e1654b464804ada53.tar.gz
src-b2b60b450cec749d7d08b64e1654b464804ada53.zip
Add support for the Em command. This restores a missing 'not' in the
description of snd_emu10kx(4). Reviewed by: simon MFC after: 1 week
Notes
Notes: svn path=/head/; revision=230332
Diffstat (limited to 'release')
-rw-r--r--release/doc/share/misc/man2hwnotes.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/doc/share/misc/man2hwnotes.pl b/release/doc/share/misc/man2hwnotes.pl
index 2fbc06601f34..aa8d023020f5 100644
--- a/release/doc/share/misc/man2hwnotes.pl
+++ b/release/doc/share/misc/man2hwnotes.pl
@@ -324,6 +324,11 @@ sub parse {
} elsif (/^Fx/) {
dlog(3, "Got Fx command");
parabuf_addline(\%mdocvars, "FreeBSD");
+ } elsif (/^Em (.+)$/) {
+ my ($txt, $punct_str) = split_punct_chars($1);
+
+ parabuf_addline(\%mdocvars,
+ normalize("<emphasis>$txt</emphasis>$punct_str"));
} else {
# Ignore all other commands.
dlog(3, "Ignoring unknown command $cmd");