instances. Closes #
1296252. Thanks to Paul DuBois for reporting.
Problem:
Instances of \\FB (instead of \\fB) in output for
Refsect1/Title.
Cause:
All content of Refsect1/Title gets uppercased (including any groff
requests that end up in the output.
Fix:
Added s/\\FB/\fB/, etc., matches to value of man.string.subst.map
param. (man.string.subst.map is basically used for "cleaning up"
borked groff markup output from initial formatting pass).
Affects:
This affects output of titles for all Refsect1-level headings in
manpages output.
<substitution oldstring="\\fB" newstring="\fB"/>
<substitution oldstring="\\fI" newstring="\fI"/>
<substitution oldstring="\\fR" newstring="\fR"/>
+ <!-- * requests in .SH sectsions output from Refsect1-level source -->
+ <!-- * end up getting capitalized... -->
+ <substitution oldstring="\\FB" newstring="\fB"/>
+ <substitution oldstring="\\FI" newstring="\fI"/>
+ <substitution oldstring="\\FR" newstring="\fR"/>
<substitution oldstring='\\%' newstring='\%'/>
<substitution oldstring='\\&' newstring='\&'/>
<substitution oldstring='.\\"' newstring='.\"'/>