diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-07 20:01:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-07 20:01:19 +0000 |
commit | 38e5c73900c5e957ce2d1e4eec4c1222509aac9a (patch) | |
tree | 2b8cc9a7a71200021bc97da4e36a1d003d999cdb /term.h | |
parent | ce3e2d5316637284d4e520cd554cd6ac728f4e49 (diff) | |
download | mandoc-38e5c73900c5e957ce2d1e4eec4c1222509aac9a.tar.gz |
Prepare the terminal driver for filling multiple columns in parallel,
second step: make the per-column byte pointer persistent across
term_flushln() calls, such that a subsequent call can continue at
the point where the previous call left. If more than one column
is in use, return from term_flushln() when the column is full,
rather than breaking the output line.
No functional change, because nothing sets up multiple columns yet.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -52,6 +52,7 @@ struct termp_tbl { struct termp_col { int *buf; /* Output buffer. */ size_t maxcols; /* Allocated bytes in buf. */ + size_t col; /* Byte in buf to be written. */ size_t rmargin; /* Current right margin. */ size_t offset; /* Current left margin. */ }; @@ -61,6 +62,7 @@ struct termp { struct termp_col *tcols; /* Array of table columns. */ struct termp_col *tcol; /* Current table column. */ size_t maxtcol; /* Allocated table columns. */ + size_t lasttcol; /* Last column currently used. */ size_t line; /* Current output line number. */ size_t defindent; /* Default indent for text. */ size_t defrmargin; /* Right margin of the device. */ @@ -69,7 +71,7 @@ struct termp { size_t col; /* Byte position in buf. */ size_t lastcol; /* Bytes in buf. */ size_t viscol; /* Chars on current line. */ - size_t trailspace; /* See termp_flushln(). */ + size_t trailspace; /* See term_flushln(). */ size_t minbl; /* Minimum blanks before next field. */ int synopsisonly; /* Print the synopsis only. */ int mdocstyle; /* Imitate mdoc(7) output. */ |