summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2014-03-30 21:28:00 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2014-03-30 21:28:00 +0000
commit4eb2d12b27096ee78c5daf9473a287c1b1ea15f7 (patch)
treea552e84f6cc04d44eaccee565996dd4a38b28e71 /usr.bin/mandoc/man_term.c
parentf3916529de253ca8e432b5b96de2e02d6e198e2e (diff)
Support relative arguments to .ll (increase or decrease line length).
Diffstat (limited to 'usr.bin/mandoc/man_term.c')
-rw-r--r--usr.bin/mandoc/man_term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_term.c b/usr.bin/mandoc/man_term.c
index 5849fecd7eb..1028eabd5c7 100644
--- a/usr.bin/mandoc/man_term.c
+++ b/usr.bin/mandoc/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.97 2014/03/30 19:47:32 schwarze Exp $ */
+/* $Id: man_term.c,v 1.98 2014/03/30 21:27:59 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -238,7 +238,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);
}