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 d67b5a3b for ; Mon, 25 Jun 2018 09:06:37 -0500 (EST) Date: Mon, 25 Jun 2018 09:06:37 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: Drop explicit, constant style=margin-left attribute on .Bf X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- Drop explicit, constant style=margin-left attribute on .Bf blocks. Since
uses HTML_NLAROUND, it is no longer needed. Modified Files: -------------- mandoc: mdoc_html.c Revision Data ------------- Index: mdoc_html.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_html.c,v retrieving revision 1.307 retrieving revision 1.308 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.307 -r1.308 --- mdoc_html.c +++ mdoc_html.c @@ -1416,7 +1416,7 @@ mdoc_bf_pre(MDOC_ARGS) cattr = "Bf No"; /* Cannot use TAG_SPAN because it may contain blocks. */ - print_otag(h, TAG_DIV, "cshl", cattr, 1); + print_otag(h, TAG_DIV, "c", cattr); return 1; } -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv