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
This commit is contained in:
John Baldwin 2012-01-19 17:29:54 +00:00
parent 5bcd25de3e
commit b2b60b450c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230332

View File

@ -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");