diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 06:32:17 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 06:32:17 +0000 |
commit | 9950b2b9fc5ab7d01626ea94dfb14ce446cf5927 (patch) | |
tree | 5d61e3240d93f97b918b5e5b0cb3e191531c3345 /term.c | |
parent | 6cef110ea7c9248b1b0e3caead715fbe248dadac (diff) | |
download | mandoc-9950b2b9fc5ab7d01626ea94dfb14ce446cf5927.tar.gz |
Removed segfault with empty word.
Initial "full" -column support.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |