summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-12 06:32:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-12 06:32:17 +0000
commit9950b2b9fc5ab7d01626ea94dfb14ce446cf5927 (patch)
tree5d61e3240d93f97b918b5e5b0cb3e191531c3345 /term.c
parent6cef110ea7c9248b1b0e3caead715fbe248dadac (diff)
downloadmandoc-9950b2b9fc5ab7d01626ea94dfb14ce446cf5927.tar.gz
Removed segfault with empty word.
Initial "full" -column support.
Diffstat (limited to 'term.c')
-rw-r--r--term.c2
1 files changed, 1 insertions, 1 deletions
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):