diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-02-05 20:34:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-02-05 20:34:48 +0000 |
commit | 4befdd004f7a71572dbb0ba761d78e4e4febef1e (patch) | |
tree | 4cadf1025671e38b883639ce61cc687072748e6e | |
parent | 83097ccc8c95638eb6d670dc2561f8bde1ab02f7 (diff) |
fix font selection for .Bf without argument
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index d68d3294eac..1b6307a2de3 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_html.c,v 1.142 2017/02/05 20:21:17 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.143 2017/02/05 20:34:47 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -1467,7 +1467,7 @@ mdoc_bf_pre(MDOC_ARGS) else if (FONT_Li == n->norm->Bf.font) cattr = "Li"; else - cattr = "none"; + cattr = "No"; /* * We want this to be inline-formatted, but needs to be div to |