diff options
author | Simon L. B. Nielsen <simon@FreeBSD.org> | 2004-12-14 13:07:58 +0000 |
---|---|---|
committer | Simon L. B. Nielsen <simon@FreeBSD.org> | 2004-12-14 13:07:58 +0000 |
commit | 8dd33b6c68962e174ed3716519957f73a3ca2191 (patch) | |
tree | 6e331d2ba111c025f6044db04bbbd8d1cfd67b3b /release/doc/share | |
parent | 989a2aae702a23bb2fb740c2a6ba428c377d730f (diff) | |
download | src-8dd33b6c68962e174ed3716519957f73a3ca2191.tar.gz src-8dd33b6c68962e174ed3716519957f73a3ca2191.zip |
- Update usage to reflect the current reality.
- Fix a bug where manual pages which had a "_" in their name did not
get proper architecture setting.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=138845
Diffstat (limited to 'release/doc/share')
-rw-r--r-- | release/doc/share/misc/man2hwnotes.pl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/release/doc/share/misc/man2hwnotes.pl b/release/doc/share/misc/man2hwnotes.pl index e740f74b7bd1..8670693a00c0 100644 --- a/release/doc/share/misc/man2hwnotes.pl +++ b/release/doc/share/misc/man2hwnotes.pl @@ -40,7 +40,8 @@ # arguments to the .It command, only the argument will be printed. # Usage: -# mdoc2sgml [-l] [-d 0-6] [-a <archlist file>] [-o <outputfile>] <manualpage> [<manualpage> ...] +# man2hwnotes.pl [-l] [-d 0-6] [-a <archlist file>] [-o <outputfile>] +# <manualpage> [<manualpage> ...] use strict; use Getopt::Std; @@ -172,11 +173,12 @@ sub parse { dlog(3, "Setting Nm to $1"); $mdocvars{Nm} = $1; # "_" cannot be used for an entity name. - $mdocvars{Nm} =~ s,_,.,g; + $mdocvars{EntNm} = $1; + $mdocvars{EntNm} =~ s,_,.,g; } elsif (/^Nm$/) { if (defined($mdocvars{Nm}) && $mdocvars{Nm} ne "") { - parabuf_addline(\%mdocvars, "&man.".$mdocvars{Nm}.".$cur_mansection;"); + parabuf_addline(\%mdocvars, "&man.".$mdocvars{EntNm}.".$cur_mansection;"); } else { dlog(2, "Warning: Bad Nm call in $manpage"); } @@ -194,7 +196,7 @@ sub parse { add_sgmltag(\%mdocvars, "<!ENTITY hwlist.".$mdocvars{cur_manname}." '"); if ($only_list_out) { add_sgmltag("<para>&hwlist.preamble.pre; " . - "&man.".$mdocvars{Nm}.".$cur_mansection; " . + "&man.".$mdocvars{EntNm}.".$cur_mansection; " . "&hwlist.preamble.post;</para>"); } } elsif ($mdocvars{isin_hwlist}) { |