From 5788bca96fe63ad62b2e8fd017671404c90b444e 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 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 8381174b..ea58a790 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.42 2009/07/15 08:20:43 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.43 2009/07/16 13:27:24 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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 v1.2.3