summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'term.c')
-rw-r--r--term.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/term.c b/term.c
index f549668f..73847282 100644
--- a/term.c
+++ b/term.c
@@ -56,7 +56,8 @@
#define TTYPE_LINK_ANCHOR 19
#define TTYPE_LINK_TEXT 20
#define TTYPE_REF_JOURNAL 21
-#define TTYPE_NMAX 22
+#define TTYPE_LIST 22
+#define TTYPE_NMAX 23
/*
* These define "styles" for element types, like command arguments or
@@ -88,7 +89,8 @@ const int ttypes[TTYPE_NMAX] = {
TERMP_BOLD, /* TTYPE_DIAG */
TERMP_UNDER, /* TTYPE_LINK_ANCHOR */
TERMP_BOLD, /* TTYPE_LINK_TEXT */
- TERMP_UNDER /* TTYPE_REF_JOURNAL */
+ TERMP_UNDER, /* TTYPE_REF_JOURNAL */
+ TERMP_BOLD /* TTYPE_LIST */
};
static int arg_hasattr(int, const struct mdoc_node *);