diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-25 15:12:26 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-25 15:12:26 +0000 |
commit | f3d5c8db4c02e31a44ed81c1faa87a057f79585b (patch) | |
tree | 6199f440c82d1ae02d4b7214353571b469c0e983 /term.h | |
parent | 4d021113ebf58cd7c14d5296060c615c99450f9c (diff) | |
download | mandoc-f3d5c8db4c02e31a44ed81c1faa87a057f79585b.tar.gz |
Added [almost] all list types.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -41,11 +41,13 @@ struct termp { }; struct termpair { + struct termpair *ppair; int type; #define TERMPAIR_FLAG (1 << 0) int flag; size_t offset; size_t rmargin; + int count; }; #define TERMPAIR_SETFLAG(p, fl) \ |