aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 11:34:53 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 11:34:53 +0000
commit175c51d9a38aa43801777db95c54f0d7abf91092 (patch)
tree93774c3c3bba8e5ca272cc359c8d6ea63532fed9 /mdoc_term.c
parentfee8aca887653490f8c052e474d2a620140e741d (diff)
downloadmandoc-175c51d9a38aa43801777db95c54f0d7abf91092.tar.gz
mandoc-175c51d9a38aa43801777db95c54f0d7abf91092.tar.zst
mandoc-175c51d9a38aa43801777db95c54f0d7abf91092.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index a1477546..99fd5b00 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.231 2011/06/29 15:38:09 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.232 2011/07/21 11:34:53 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -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);