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 /mdoc_term.c | |
parent | b0b643c847c8a9530fc19fc081c52b9b6f5159dd (diff) | |
download | mandoc-0e54067b69058241ae1471784ca76be3ce54c96e.tar.gz |
Support relative arguments to .ll (increase or decrease line length).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 8da9366b..e6d85e8e 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -622,7 +622,7 @@ static int termp_ll_pre(DECL_ARGS) { - (*p->setwidth)(p, n->nchild ? a2width(p, n->child->string) : 0); + term_setwidth(p, n->nchild ? n->child->string : NULL); return(0); } |