diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-24 12:47:35 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-24 12:47:35 +0000 |
commit | 0a7168f35ea81e7d33274eca44e286e13900f487 (patch) | |
tree | b652ccfb49b2e3ea10aa4fae35d68c3f6ddfd8c1 /term.h | |
parent | b7bd09220f5261b8ac0512aa2d7f046cedba9040 (diff) | |
download | mandoc-0a7168f35ea81e7d33274eca44e286e13900f487.tar.gz |
Full support for `An -split/-nosplit'. Compat documented.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ struct termp { #define TERMP_DANGLE (1 << 8) /* See term_flushln(). */ #define TERMP_HANG (1 << 9) /* See term_flushln(). */ #define TERMP_TWOSPACE (1 << 10) /* See term_flushln(). */ +#define TERMP_NOSPLIT (1 << 11) /* See termp_an_pre/post(). */ +#define TERMP_SPLIT (1 << 12) /* See termp_an_pre/post(). */ +#define TERMP_ANPREC (1 << 13) /* See termp_an_pre(). */ char *buf; /* Output buffer. */ enum termenc enc; /* Type of encoding. */ void *symtab; /* Encoded-symbol table. */ |