From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id e496ad43 for ; Fri, 14 Apr 2017 13:25:34 -0500 (EST) Date: Fri, 14 Apr 2017 13:25:34 -0500 (EST) Message-Id: <7092807451452037695.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Do not make the colon after the .Lk link text italic. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Do not make the colon after the .Lk link text italic. I just pushed the same change to GNU troff. Modified Files: -------------- mdocml: mdoc_man.c mdoc_term.c Revision Data ------------- Index: mdoc_man.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mdoc_man.c,v retrieving revision 1.105 retrieving revision 1.106 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.105 -r1.106 --- mdoc_man.c +++ mdoc_man.c @@ -1474,8 +1474,8 @@ pre_lk(DECL_ARGS) print_word(descr->string); descr = descr->next; } - print_word(":"); font_pop(); + print_word(":"); } font_push('B'); Index: mdoc_term.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mdoc_term.c,v retrieving revision 1.346 retrieving revision 1.347 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.346 -r1.347 --- mdoc_term.c +++ mdoc_term.c @@ -2003,9 +2003,9 @@ termp_lk_pre(DECL_ARGS) term_word(p, descr->string); descr = descr->next; } + term_fontpop(p); p->flags |= TERMP_NOSPACE; term_word(p, ":"); - term_fontpop(p); } term_fontpush(p, TERMFONT_BOLD); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv