From 301473787fdb239a8b3831bfbec8021eae2f9795 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 16 Jul 2009 13:27:24 +0000 Subject: Off-by-one space fixed for `Bl -diag'. --- mdoc_term.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 1f45bb8e..e4a3bdc5 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -797,9 +797,6 @@ termp_it_pre(DECL_ARGS) */ switch (type) { - case (MDOC_Diag): - term_word(p, "\\ "); - /* FALLTHROUGH */ case (MDOC_Inset): if (MDOC_BODY == node->type) p->flags &= ~TERMP_NOSPACE; @@ -988,6 +985,7 @@ termp_it_post(DECL_ARGS) switch (type) { case (MDOC_Diag): + term_word(p, "\\ "); /* FALLTHROUGH */ case (MDOC_Item): /* FALLTHROUGH */ -- cgit