diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 15:28:56 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 15:28:56 +0000 |
commit | 643af1edaf881ac08f66cfdf17d2807aa0629a3d (patch) | |
tree | c85a14503ed0f42d4c71e00c8a64d2bb317c866e | |
parent | 99f9e0ced799039092a15e576a2ba9f04fff9d0a (diff) | |
download | mandoc-643af1edaf881ac08f66cfdf17d2807aa0629a3d.tar.gz |
Properly uppercase the first-letter of the `Bx' second argument.
-rw-r--r-- | mdoc_html.c | 11 | ||||
-rw-r--r-- | mdoc_term.c | 9 |
2 files changed, 15 insertions, 5 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 9d83553d..a82edaa4 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -832,7 +832,8 @@ mdoc_xx_pre(MDOC_ARGS) static int mdoc_bx_pre(MDOC_ARGS) { - struct htmlpair tag; + struct htmlpair tag; + char buf[3]; PAIR_CLASS_INIT(&tag, "unix"); print_otag(h, TAG_SPAN, 1, &tag); @@ -847,10 +848,14 @@ mdoc_bx_pre(MDOC_ARGS) } if (NULL != (n = n->next)) { + buf[0] = '-'; + buf[1] = toupper((unsigned char)*n->string); + buf[2] = '\0'; + h->flags |= HTML_NOSPACE; - print_text(h, "-"); + print_text(h, buf); h->flags |= HTML_NOSPACE; - print_text(h, n->string); + print_text(h, n->string + 1); } return(0); diff --git a/mdoc_term.c b/mdoc_term.c index 703f2d06..221a6424 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1677,6 +1677,7 @@ termp_bd_post(DECL_ARGS) static int termp_bx_pre(DECL_ARGS) { + char buf[3]; if (NULL != (n = n->child)) { term_word(p, n->string); @@ -1688,10 +1689,14 @@ termp_bx_pre(DECL_ARGS) } if (NULL != (n = n->next)) { + buf[0] = '-'; + buf[1] = toupper((unsigned char)*n->string); + buf[2] = '\0'; + p->flags |= TERMP_NOSPACE; - term_word(p, "-"); + term_word(p, buf); p->flags |= TERMP_NOSPACE; - term_word(p, n->string); + term_word(p, n->string + 1); } return(0); |