diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-05 15:37:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-05 15:37:23 +0000 |
commit | 49803152fb211a06850fbee706084bf34a370704 (patch) | |
tree | 4b5df6588a9bae17e3788b4610eb74e7a7f4c577 /term.h | |
parent | f824bd1b5c997090ea6dee10eb77ccf96c57fc03 (diff) | |
download | mandoc-49803152fb211a06850fbee706084bf34a370704.tar.gz |
Stuff tbl_calc() into out.c so that it can be shared by all output modes
(isn't now, but will need to be, used by -T[x]html also). Necessitated
a lot of churn in getting tbl_calc* code out of tbl_term.c and into
out.c, including renaming some structures and so on. The abstraction is
in having a pointer to a wrapper function for calculating string widths.
The char devices use term_strlen and term_len; the others will probably
just use strlen().
While at it, remove some superfluous assertions in the tbl code. This
allows all tbl manuals to clear.
Lastly, set the right-margin to be the maximum margin for each table
span. This allows big, complicated tbl-pages like terminfo to be
displayed. They're ugly, but they work.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ struct termp_tbl { struct termp { enum termtype type; - struct termp_tbl *tbl; /* table configuration */ + struct rofftbl tbl; /* table configuration */ size_t defrmargin; /* Right margin of the device. */ size_t rmargin; /* Current right margin. */ size_t maxrmargin; /* Max right margin. */ |