From da98c7539daf0f47de95ebfe6c514b48047dcea0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 6 Feb 2011 21:44:36 +0000 Subject: 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). --- man_term.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'man_term.c') diff --git a/man_term.c b/man_term.c index 97e97dea..d2ae385b 100644 --- a/man_term.c +++ b/man_term.c @@ -896,6 +896,8 @@ print_man_node(DECL_ARGS) if (MAN_EOS & n->flags) p->flags |= TERMP_SENTENCE; return; + case (MAN_EQN): + return; case (MAN_TBL): /* * Tables are preceded by a newline. Then process a -- cgit