Make sure disabling hyphenation actually works.

For some reason, `.nh` does not work if specified _prior to_ `.TH`. If `.nh` is below `.TH`, hyphenation is properly disabled.
This commit is contained in:
Lev Walkin 2015-12-01 22:33:46 -08:00
parent 5e9fad4caf
commit 23d4d65803

View file

@ -8,12 +8,12 @@ $endif$
$if(adjusting)$ $if(adjusting)$
.ad $adjusting$ .ad $adjusting$
$endif$ $endif$
.TH "$title$" "$section$" "$date$" "$footer$" "$header$"
$if(hyphenate)$ $if(hyphenate)$
.hy .hy
$else$ $else$
.nh .nh \" Turn off hyphenation by default.
$endif$ $endif$
.TH "$title$" "$section$" "$date$" "$footer$" "$header$"
$for(header-includes)$ $for(header-includes)$
$header-includes$ $header-includes$
$endfor$ $endfor$