diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-06 13:53:07 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-06 13:53:07 +0000 |
commit | b1b0aae37dcfbf9c43a595aa139982d182ea8e9a (patch) | |
tree | 982bd7f710dd6e11ee48d9c8e3f6224cef0961f2 | |
parent | 0e8185a78ba3a32f8dc0bbf129a499a5886091c1 (diff) | |
download | mandoc-b1b0aae37dcfbf9c43a595aa139982d182ea8e9a.tar.gz |
Header for `PP', `P', and `LP' should never be printed.
-rw-r--r-- | man_html.c | 5 | ||||
-rw-r--r-- | man_term.c | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -547,8 +547,10 @@ man_PP_pre(MAN_ARGS) struct roffsu su; int i; - if (MAN_BLOCK != n->type) + if (MAN_BODY == n->type) return(1); + if (MAN_HEAD == n->type) + return(0); i = 0; @@ -565,6 +567,7 @@ man_PP_pre(MAN_ARGS) PAIR_STYLE_INIT(&tag, h); print_otag(h, TAG_DIV, i, &tag); + return(1); } @@ -492,7 +492,7 @@ pre_PP(DECL_ARGS) break; } - return(1); + return(MAN_HEAD != n->type); } |