aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_term.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index d9ecbbf0..e84d56d2 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.215 2011/02/02 21:40:45 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.216 2011/02/06 21:44:36 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;