summaryrefslogtreecommitdiffstatshomepage
path: root/term.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 15:50:45 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 15:50:45 +0000
commit9d6cd65d9c0228344fd1848a9f8c9343f5434599 (patch)
tree05750bc4fec861fcaf812647a8bf34faab55eeec /term.h
parent8c0bc76f597bfa8102ebaae346815b1375f941f4 (diff)
downloadmandoc-9d6cd65d9c0228344fd1848a9f8c9343f5434599.tar.gz
mandoc-9d6cd65d9c0228344fd1848a9f8c9343f5434599.tar.zst
mandoc-9d6cd65d9c0228344fd1848a9f8c9343f5434599.zip
Initial block-display support.
Diffstat (limited to 'term.h')
-rw-r--r--term.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/term.h b/term.h
index 48f0be28..28c68b36 100644
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.2 2009/02/21 21:00:06 kristaps Exp $ */
+/* $Id: term.h,v 1.3 2009/02/22 15:50:45 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -35,6 +35,7 @@ struct termp {
#define TERMP_NOSPACE (1 << 2) /* No space before words. */
#define TERMP_NOLPAD (1 << 3) /* No leftpad before flush. */
#define TERMP_NOBREAK (1 << 4) /* No break after flush. */
+#define TERMP_LITERAL (1 << 5) /* Literal words. */
char *buf;
};