From 8b8c158fd8de44ca79949d5f916da9eb54a0566a 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'term.c') diff --git a/term.c b/term.c index 8aa8b916..8f10d0d3 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.54 2009/03/12 02:57:36 kristaps Exp $ */ +/* $Id: term.c,v 1.55 2009/03/12 06:32:17 kristaps Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -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 v1.2.3