From 5429c6324d2969b17da51f6de9f445e7bb44294b Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 25 Jan 2011 15:28:56 +0000 Subject: Properly uppercase the first-letter of the `Bx' second argument. --- mdoc_term.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 169b2b4b..3d48b453 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.211 2011/01/25 15:17:18 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.212 2011/01/25 15:28:56 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -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); -- cgit v1.2.3-56-ge451