summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-23 09:42:43 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-23 09:42:43 +0000
commitd4dba4479e3ed55fdc52b75eab00afe7ad78d5f0 (patch)
treeae9b30bcd618bab055dabba5c292db8a142e9e5f /term.c
parentb3abf1d9e473d326d2a09cdee5eda0bb4f0234ce (diff)
downloadmandoc-d4dba4479e3ed55fdc52b75eab00afe7ad78d5f0.tar.gz
More manual documentation fixed/improved.
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 *);