diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-23 12:42:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-23 12:42:22 +0000 |
commit | b91ebfead4e5c9a7e1474e1ed5347724613df9d6 (patch) | |
tree | 51be4532c14e9004fcbf1431249109077d775ac0 /mdoc_term.c | |
parent | 664c21875228ae7f241f792abcc521bc64e42067 (diff) | |
download | mandoc-b91ebfead4e5c9a7e1474e1ed5347724613df9d6.tar.gz |
Fixed two very subtle bugs in retaining overstep and maxrmargin widths between parse sequences.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index ee1967bc..ecda7c7f 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -270,6 +270,9 @@ terminal_mdoc(void *arg, const struct mdoc *mdoc) p = (struct termp *)arg; + p->overstep = 0; + p->maxrmargin = 78; + if (NULL == p->symtab) switch (p->enc) { case (TERMENC_ASCII): |