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)$
.ad $adjusting$
$endif$
.TH "$title$" "$section$" "$date$" "$footer$" "$header$"
$if(hyphenate)$
.hy
$else$
.nh
.nh \" Turn off hyphenation by default.
$endif$
.TH "$title$" "$section$" "$date$" "$footer$" "$header$"
$for(header-includes)$
$header-includes$
$endfor$