From 9950b2b9fc5ab7d01626ea94dfb14ce446cf5927 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 12 Mar 2009 06:32:17 +0000 Subject: Removed segfault with empty word. Initial "full" -column support. --- term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'term.c') diff --git a/term.c b/term.c index f0951c7b..dc27281b 100644 --- a/term.c +++ b/term.c @@ -531,7 +531,7 @@ termp_it_pre(DECL_ARGS) case (MDOC_Enum): /* FALLTHROUGH */ case (MDOC_Hyphen): - if (width > 4) + if (width < 4) width = 4; break; case (MDOC_Tag): -- cgit