]> git.cameronkatri.com Git - mandoc.git/commitdiff
Translate blank input lines to .sp just like in mdoc(7),
authorIngo Schwarze <schwarze@openbsd.org>
Sat, 14 Jul 2012 10:47:07 +0000 (10:47 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Sat, 14 Jul 2012 10:47:07 +0000 (10:47 +0000)
and ignore .sp after .PP.  This fixes vertical spacing
for blank lines after .PP and for .sp after .PP.
OpenBSD rev. man.c 1.68 and man_term.c 1.86

man.c
man_term.c

diff --git a/man.c b/man.c
index d22972511c3995a06484e33b1b44191a4607ef48..e1a7d94d0c46dab2705e513ba5833361d87c3720 100644 (file)
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/*     $Id: man.c,v 1.117 2012/06/12 20:21:04 kristaps Exp $ */
+/*     $Id: man.c,v 1.118 2012/07/14 10:47:07 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -435,9 +435,10 @@ man_ptext(struct man *m, int line, char *buf, int offs)
 
        if ('\0' == buf[i]) {
                /* Allocate a blank entry. */
-               if ( ! man_word_alloc(m, line, offs, ""))
+               if ( ! man_elem_alloc(m, line, offs, MAN_sp))
                        return(0);
-               return(man_descope(m, line, offs));
+               m->next = MAN_NEXT_SIBLING;
+               return(1);
        }
 
        /* 
index 14e13246969d168211fa5698756a3483ff199bbc..93f927d9307693656bada5682a1c56353a667e07 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_term.c,v 1.131 2012/07/13 14:19:49 schwarze Exp $ */
+/*     $Id: man_term.c,v 1.132 2012/07/14 10:47:07 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
@@ -445,10 +445,21 @@ pre_sp(DECL_ARGS)
        int              neg;
 
        if ((NULL == n->prev && n->parent)) {
-               if (MAN_SS == n->parent->tok)
-                       return(0);
-               if (MAN_SH == n->parent->tok)
+               switch (n->parent->tok) {
+               case (MAN_SH):
+                       /* FALLTHROUGH */
+               case (MAN_SS):
+                       /* FALLTHROUGH */
+               case (MAN_PP):
+                       /* FALLTHROUGH */
+               case (MAN_LP):
+                       /* FALLTHROUGH */
+               case (MAN_P):
+                       /* FALLTHROUGH */
                        return(0);
+               default:
+                       break;
+               }
        }
 
        neg = 0;