]> git.cameronkatri.com Git - mandoc.git/commitdiff
Header for `PP', `P', and `LP' should never be printed.
authorKristaps Dzonsons <kristaps@bsd.lv>
Mon, 6 Dec 2010 13:53:07 +0000 (13:53 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Mon, 6 Dec 2010 13:53:07 +0000 (13:53 +0000)
man_html.c
man_term.c

index 63de45340eef55b1e616c7eb6575e7097fe40400..3d7a0f15ce63f519b84436922db930c0f314f48b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_html.c,v 1.46 2010/12/05 16:14:16 kristaps Exp $ */
+/*     $Id: man_html.c,v 1.47 2010/12/06 13:53:07 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -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);
 }
 
index fa51615d0aa756c07ee63f5e9bd608cf3b9831f2..9e8fc45d5cf0117f6414b4d9fb2dad42e4268e82 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_term.c,v 1.86 2010/12/05 16:14:16 kristaps Exp $ */
+/*     $Id: man_term.c,v 1.87 2010/12/06 13:53:07 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -492,7 +492,7 @@ pre_PP(DECL_ARGS)
                break;
        }
 
-       return(1);
+       return(MAN_HEAD != n->type);
 }