svn commit: r230332 - head/release/doc/share/misc

John Baldwin jhb at FreeBSD.org
Thu Jan 19 17:29:55 UTC 2012


Author: jhb
Date: Thu Jan 19 17:29:54 2012
New Revision: 230332
URL: http://svn.freebsd.org/changeset/base/230332

Log:
  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

Modified:
  head/release/doc/share/misc/man2hwnotes.pl

Modified: head/release/doc/share/misc/man2hwnotes.pl
==============================================================================
--- head/release/doc/share/misc/man2hwnotes.pl	Thu Jan 19 11:18:21 2012	(r230331)
+++ head/release/doc/share/misc/man2hwnotes.pl	Thu Jan 19 17:29:54 2012	(r230332)
@@ -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-head mailing list