summaryrefslogtreecommitdiffstatshomepage
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
commita2a57a052ad64ce10f0f6c467b07d6aa149a7be1 (patch)
tree6c5d483ac709b1172011aae507cb4bf33f6c5f2b /mdoc_html.c
parentd2207673b9fe3268029149f7343cf907456a7d45 (diff)
downloadmandoc-a2a57a052ad64ce10f0f6c467b07d6aa149a7be1.tar.gz
mandoc-a2a57a052ad64ce10f0f6c467b07d6aa149a7be1.tar.zst
mandoc-a2a57a052ad64ce10f0f6c467b07d6aa149a7be1.zip
Make `Fo' use a B instead of SPAN (left-over).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 01796ab3..36008de5 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.138 2010/12/24 14:14:00 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.139 2010/12/24 22:47:37 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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);