-#define TERMP_NOSPACE (1 << 0) /* No space before words. */
-#define TERMP_NOLPAD (1 << 1) /* No leftpad before flush. */
-#define TERMP_NOBREAK (1 << 2) /* No break after flush. */
-#define TERMP_LITERAL (1 << 3) /* Literal words. */
-#define TERMP_IGNDELIM (1 << 4) /* Delims like regulars. */
-#define TERMP_NONOSPACE (1 << 5) /* No space (no autounset). */
-#define TERMP_NONOBREAK (1 << 7) /* Don't newln NOBREAK. */
-#define TERMP_STYLE 0xff00 /* Style mask. */
-#define TERMP_BOLD (1 << 8) /* Styles... */
-#define TERMP_UNDER (1 << 9)
-#define TERMP_BLUE (1 << 10)
-#define TERMP_RED (1 << 11)
-#define TERMP_YELLOW (1 << 12)
-#define TERMP_MAGENTA (1 << 13)
-#define TERMP_CYAN (1 << 14)
-#define TERMP_GREEN (1 << 15)
- char *buf;
- struct termsym *symtab; /* Special-symbol table. */
- enum termenc enc; /* Encoding. */
-};
-
-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(termp, p, fl) \
- do { \
- assert(! (TERMPAIR_FLAG & (p)->type)); \
- (termp)->flags |= (fl); \
- (p)->flag = (fl); \
- (p)->type |= TERMPAIR_FLAG; \
- } while (0)
-
-struct termact {
- int (*pre)(struct termp *,
- struct termpair *,
- const struct mdoc_meta *,
- const struct mdoc_node *);
- void (*post)(struct termp *,
- struct termpair *,
- const struct mdoc_meta *,
- const struct mdoc_node *);
+#define TERMP_NOSPACE (1 << 2) /* No space before words. */
+#define TERMP_NOLPAD (1 << 3) /* See term_flushln(). */
+#define TERMP_NOBREAK (1 << 4) /* See term_flushln(). */
+#define TERMP_IGNDELIM (1 << 6) /* Delims like regulars. */
+#define TERMP_NONOSPACE (1 << 7) /* No space (no autounset). */
+#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. */
+ enum termfont fontl; /* Last font set. */
+ enum termfont fontq[10]; /* Symmetric fonts. */
+ int fonti; /* Index of font stack. */