diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-21 11:34:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-21 11:34:53 +0000 |
commit | 5777d1fb503dd116e90a489fa562f0a89752541c (patch) | |
tree | a6d24495ae536ef90d93b7c33a0fa5cbc73082c7 /mdoc_term.c | |
parent | 49de222b7899f01575a6ac00a26bc345864dc826 (diff) | |
download | mandoc-5777d1fb503dd116e90a489fa562f0a89752541c.tar.gz |
Flip eqn into using parsed nodes. I've temporarily disabled printing
these in the front-ends except for -Ttree, which will display the parsed
tree.
While here, fix that quoted strings aren't scanned for replacement parts.
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 943cc8b0..39efd872 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_word(p, n->eqn->data);*/ break; case (MDOC_TBL): term_tbl(p, n->span); |