diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-30 21:28:01 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-30 21:28:01 +0000 |
commit | 0e54067b69058241ae1471784ca76be3ce54c96e (patch) | |
tree | 4b6fb50f0cba7ca839deda52f839efd76e5ebc35 /man_term.c | |
parent | b0b643c847c8a9530fc19fc081c52b9b6f5159dd (diff) | |
download | mandoc-0e54067b69058241ae1471784ca76be3ce54c96e.tar.gz |
Support relative arguments to .ll (increase or decrease line length).
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -242,7 +242,7 @@ static int pre_ll(DECL_ARGS) { - (*p->setwidth)(p, n->nchild ? a2width(p, n->child->string) : 0); + term_setwidth(p, n->nchild ? n->child->string : NULL); return(0); } |