summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMaxim Tarasov <mu@magi.net.ru>2020-07-25 04:18:03 +0300
committerKevin McCarthy <kevin@8t8.us>2020-07-25 09:04:26 -0700
commitdaab98e3072629a351025cc3b9703fd0cbd60161 (patch)
tree61baef82c766aac4bde98dab75e9f0f8cc805de5 /doc
parenta21c9fc10f11f9b0a79e03aecdb58ef51ec5d94d (diff)
Change \fC to \fB during muttrc.man generation
\fC is not actually a valid escape sequence. Using it results in misplaced underlined formatting.
Diffstat (limited to 'doc')
-rw-r--r--doc/makedoc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/makedoc.pl b/doc/makedoc.pl
index b3a18b28..7dc178c4 100644
--- a/doc/makedoc.pl
+++ b/doc/makedoc.pl
@@ -755,7 +755,7 @@ sub print_docline_man($$$$) {
$docstat &= ~($D_BF|$D_TT);
}
elsif ($special == $SP_START_TT) {
- print "\\fC";
+ print "\\fB";
$docstat |= $D_TT;
$docstat &= ~($D_BF|$D_EM);
}