]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc.c
When mentioning a function documented elsewhere, .Xr is often better than .Fn.
[mandoc.git] / mdoc.c
diff --git a/mdoc.c b/mdoc.c
index f8b09f7af19d9a7eea8b2531cd19a6f14c9d6a05..103a8a884c7489056c9bd94fc0d58b0d9aa2466a 100644 (file)
--- a/mdoc.c
+++ b/mdoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mdoc.c,v 1.163 2010/08/20 01:02:07 schwarze Exp $ */
+/*     $Id: mdoc.c,v 1.165 2010/09/27 23:03:44 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -691,11 +691,11 @@ mdoc_ptext(struct mdoc *m, int line, char *buf, int offs)
                        return(0);
 
                /*
-                * Insert a `Pp' in the case of a blank line.  Technically,
+                * Insert a `sp' in the case of a blank line.  Technically,
                 * blank lines aren't allowed, but enough manuals assume this
                 * behaviour that we want to work around it.
                 */
-               if ( ! mdoc_elem_alloc(m, line, offs, MDOC_Pp, NULL))
+               if ( ! mdoc_elem_alloc(m, line, offs, MDOC_sp, NULL))
                        return(0);
 
                m->next = MDOC_NEXT_SIBLING;