From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id sA6MSaV4007542 for ; Thu, 6 Nov 2014 17:28:37 -0500 (EST) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id sA6MSaOj012672; Thu, 6 Nov 2014 17:28:36 -0500 (EST) Date: Thu, 6 Nov 2014 17:28:36 -0500 (EST) Message-Id: <201411062228.sA6MSaOj012672@krisdoz.my.domain> 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: Let -Tascii \(bu (bullet) output agree with groff; this is now X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Let -Tascii \(bu (bullet) output agree with groff; this is now possible because -Tps now handles backspace overstriking. Modified Files: -------------- mdocml: chars.in mdoc_man.c Revision Data ------------- Index: mdoc_man.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_man.c,v retrieving revision 1.71 retrieving revision 1.72 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.71 -r1.72 --- mdoc_man.c +++ mdoc_man.c @@ -1340,7 +1340,7 @@ pre_it(DECL_ARGS) outflags |= MMAN_nl; font_push('B'); if (LIST_bullet == bln->norm->Bl.type) - print_word("o"); + print_word("\\(bu"); else print_word("-"); font_pop(); Index: chars.in =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/chars.in,v retrieving revision 1.48 retrieving revision 1.49 diff -Lchars.in -Lchars.in -u -p -r1.48 -r1.49 --- chars.in +++ chars.in @@ -364,7 +364,7 @@ CHAR("rs", "\\", 92) /* Text markers. */ CHAR("ci", "O", 9675) -CHAR("bu", "o", 8226) +CHAR("bu", "+\bo", 8226) CHAR("dd", "|\b=", 8225) CHAR("dg", "|\b-", 8224) CHAR("lz", "<>", 9674) -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv