summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-24 22:47:37 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-24 22:47:37 +0000
commit95fb9d3f9b3a6064ae1787f3d5aba09a5ed17dec (patch)
treedea55b753ca73ea9bec41a4e5c84086eaa29371f /mdoc_html.c
parent5e52928de7dbe0445296bd6d6ffc37849a28b70b (diff)
downloadmandoc-95fb9d3f9b3a6064ae1787f3d5aba09a5ed17dec.tar.gz
Make `Fo' use a B instead of SPAN (left-over).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 5f077cb9..f4b7f485 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1597,7 +1597,7 @@ mdoc_fo_pre(MDOC_ARGS)
assert(n->child->string);
PAIR_CLASS_INIT(&tag, "fname");
- t = print_otag(h, TAG_SPAN, 1, &tag);
+ t = print_otag(h, TAG_B, 1, &tag);
print_text(h, n->child->string);
print_tagq(h, t);
return(0);
@@ -1684,7 +1684,7 @@ mdoc_rv_pre(MDOC_ARGS)
for (nn = n->child; nn; nn = nn->next) {
PAIR_CLASS_INIT(&tag, "fname");
- t = print_otag(h, TAG_SPAN, 1, &tag);
+ t = print_otag(h, TAG_B, 1, &tag);
print_text(h, nn->string);
print_tagq(h, t);