]> git.cameronkatri.com Git - mandoc.git/commitdiff
Make `Fo' use a B instead of SPAN (left-over).
authorKristaps Dzonsons <kristaps@bsd.lv>
Fri, 24 Dec 2010 22:47:37 +0000 (22:47 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Fri, 24 Dec 2010 22:47:37 +0000 (22:47 +0000)
mdoc_html.c

index 01796ab34cf37ed166519e3c08c1e3b1e9fa30ff..36008de53d0841106cf0520c02c0e5759564d44c 100644 (file)
@@ -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);