summaryrefslogtreecommitdiffstats
path: root/mdoc_man.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_man.c')
-rw-r--r--mdoc_man.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mdoc_man.c b/mdoc_man.c
index 8d7cd000..f6afd614 100644
--- a/mdoc_man.c
+++ b/mdoc_man.c
@@ -1342,9 +1342,10 @@ static int
pre_sp(DECL_ARGS)
{
- if (MMAN_PP & outflags && MDOC_It != n->parent->tok)
+ if (MMAN_PP & outflags) {
+ outflags &= ~MMAN_PP;
print_line(".PP", 0);
- else
+ } else
print_line(".sp", 0);
return(1);
}