svn commit: r231606 - stable/9/release/doc/share/misc

John Baldwin jhb at FreeBSD.org
Mon Feb 13 19:36:10 UTC 2012


Author: jhb
Date: Mon Feb 13 19:36:09 2012
New Revision: 231606
URL: http://svn.freebsd.org/changeset/base/231606

Log:
  MFC 230332:
  Add support for the Em command.  This restores a missing 'not' in the
  description of snd_emu10kx(4).

Modified:
  stable/9/release/doc/share/misc/man2hwnotes.pl
Directory Properties:
  stable/9/release/   (props changed)
  stable/9/release/doc/en_US.ISO8859-1/hardware/   (props changed)

Modified: stable/9/release/doc/share/misc/man2hwnotes.pl
==============================================================================
--- stable/9/release/doc/share/misc/man2hwnotes.pl	Mon Feb 13 19:36:00 2012	(r231605)
+++ stable/9/release/doc/share/misc/man2hwnotes.pl	Mon Feb 13 19:36:09 2012	(r231606)
@@ -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");


More information about the svn-src-all mailing list