diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-06 21:44:36 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-06 21:44:36 +0000 |
commit | da98c7539daf0f47de95ebfe6c514b48047dcea0 (patch) | |
tree | b4f7ba288e2a85dd1e7115c14a8e0a8f58f8ba30 /mdoc_term.c | |
parent | 858bb68c9059fe5b8f8f613dab2761233ff36ba7 (diff) | |
download | mandoc-da98c7539daf0f47de95ebfe6c514b48047dcea0.tar.gz |
Add initial libmdoc and libman top-most machinery for accepting TBL
directives. For now this will just ignore them (except for -Ttree,
which just notes that an EQN's been accepted).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index bad775e9..7eae63ce 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -319,6 +319,8 @@ print_mdoc_node(DECL_ARGS) term_newln(p); term_word(p, n->string); break; + case (MDOC_EQN): + break; case (MDOC_TBL): term_tbl(p, n->span); break; @@ -369,6 +371,8 @@ print_mdoc_node(DECL_ARGS) break; case (MDOC_TBL): break; + case (MDOC_EQN): + break; default: if ( ! termacts[n->tok].post || MDOC_ENDED & n->flags) break; |