aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-06-25 14:06:07 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-06-25 14:06:07 +0000
commitcab8a64b18366a08e39d04444e5378d33fa153ed (patch)
tree91896133efda2686730286cd8e83035f3e8504d4
parent5d4ebc3a30c7755302de93ea988b23b5448d9f02 (diff)
downloadmandoc-cab8a64b18366a08e39d04444e5378d33fa153ed.tar.gz
mandoc-cab8a64b18366a08e39d04444e5378d33fa153ed.tar.zst
mandoc-cab8a64b18366a08e39d04444e5378d33fa153ed.zip
Drop explicit, constant style=margin-left attribute on .Bf blocks.
Since <div> uses HTML_NLAROUND, it is no longer needed.
-rw-r--r--mdoc_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index e0a82ab9..93458a92 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.307 2018/06/25 13:45:57 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.308 2018/06/25 14:06:07 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;
}