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:
jhb 2012-01-19 17:29:54 +00:00
parent cdbc1c0eb1
commit 1044a607a6

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