aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 10:31:15 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 10:31:15 +0000
commitbe25abe332d021e7a5092c3596a6ffc11e352da9 (patch)
treea89a06d129e0e65d57fc82e7d6cabfab231ba3dd /man_html.c
parente13ccc532ba5c065e0ead1d88a8e7243d296baf5 (diff)
downloadmandoc-be25abe332d021e7a5092c3596a6ffc11e352da9.tar.gz
mandoc-be25abe332d021e7a5092c3596a6ffc11e352da9.tar.zst
mandoc-be25abe332d021e7a5092c3596a6ffc11e352da9.zip
Protect tbl nodes from getting a post call.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/man_html.c b/man_html.c
index f9f72c8d..986ded45 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.60 2011/01/04 10:29:41 kristaps Exp $ */
+/* $Id: man_html.c,v 1.61 2011/01/04 10:31:15 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -227,10 +227,17 @@ print_man_node(MAN_ARGS)
bufinit(h);
- if (MAN_ROOT == n->type)
+ switch (n->type) {
+ case (MAN_ROOT):
man_root_post(m, n, mh, h);
- else if (mans[n->tok].post)
- (*mans[n->tok].post)(m, n, mh, h);
+ break;
+ case (MAN_TBL):
+ break;
+ default:
+ if (mans[n->tok].post)
+ (*mans[n->tok].post)(m, n, mh, h);
+ break;
+ }
}