summaryrefslogtreecommitdiffstats
path: root/term.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 08:40:16 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 08:40:16 +0000
commit54c1839bf6facda8803778f0b1a0f625de1b7e03 (patch)
tree7e80afdb9690f796aeb191e2e71713c307a4c77a /term.h
parentb53b23e2ebb55ef38b0b972ae0cf4f246e20a5cb (diff)
downloadmandoc-54c1839bf6facda8803778f0b1a0f625de1b7e03.tar.gz
Correct support for `\fX' font modes in -Tascii.
Diffstat (limited to 'term.h')
-rw-r--r--term.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/term.h b/term.h
index f4f11610..ee8fd90e 100644
--- a/term.h
+++ b/term.h
@@ -43,6 +43,10 @@ struct termp {
#define TERMP_ANPREC (1 << 13) /* See termp_an_pre(). */
int bold;
int under;
+ int metafont; /* See do_escaped(). */
+#define METAF_BOLD (1 << 0)
+#define METAF_UNDER (1 << 1)
+ int metamask; /* See do_escaped(). */
char *buf; /* Output buffer. */
enum termenc enc; /* Type of encoding. */
void *symtab; /* Encoded-symbol table. */