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 /term.h | |
parent | b0b643c847c8a9530fc19fc081c52b9b6f5159dd (diff) | |
download | mandoc-0e54067b69058241ae1471784ca76be3ce54c96e.tar.gz |
Support relative arguments to .ll (increase or decrease line length).
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,7 +95,7 @@ struct termp { void (*end)(struct termp *); void (*endline)(struct termp *); void (*advance)(struct termp *, size_t); - void (*setwidth)(struct termp *, size_t); + void (*setwidth)(struct termp *, int, size_t); size_t (*width)(const struct termp *, int); double (*hspan)(const struct termp *, const struct roffsu *); @@ -114,7 +114,7 @@ void term_begin(struct termp *, term_margin, term_margin, const void *); void term_end(struct termp *); -void term_setwidth(struct termp *, size_t); +void term_setwidth(struct termp *, const char *); size_t term_hspan(const struct termp *, const struct roffsu *); size_t term_vspan(const struct termp *, |