diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-22 10:50:46 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-22 10:50:46 +0000 |
commit | 16b40a0ceac84afe1ca3122b48c8cb7ef28111cf (patch) | |
tree | db94009a47e9ef95cb5bba76c3675982ecd06be0 /mdoc_term.c | |
parent | cb7c07f33b511f1525975bfd609094b8930f2153 (diff) | |
download | mandoc-16b40a0ceac84afe1ca3122b48c8cb7ef28111cf.tar.gz |
Add character output (-Tpdf, -Tps, -Tascii) for equations. This is the
minimum: unseparated terms.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 39efd872..5e77aa1b 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -351,7 +351,7 @@ print_mdoc_node(DECL_ARGS) p->flags |= TERMP_NOSPACE; break; case (MDOC_EQN): - /*term_word(p, n->eqn->data);*/ + term_eqn(p, n->eqn); break; case (MDOC_TBL): term_tbl(p, n->span); |