Date: Mon, 13 Feb 2012 19:36:10 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r231606 - stable/9/release/doc/share/misc Message-ID: <201202131936.q1DJaAmD058599@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202131936.q1DJaAmD058599>