=================================================================== RCS file: /cvs/mandoc/mdoc_man.c,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- mandoc/mdoc_man.c 2012/07/14 09:07:18 1.39 +++ mandoc/mdoc_man.c 2012/07/16 09:51:54 1.40 @@ -1,4 +1,4 @@ -/* $Id: mdoc_man.c,v 1.39 2012/07/14 09:07:18 schwarze Exp $ */ +/* $Id: mdoc_man.c,v 1.40 2012/07/16 09:51:54 schwarze Exp $ */ /* * Copyright (c) 2011, 2012 Ingo Schwarze * @@ -1342,7 +1342,10 @@ static int pre_sp(DECL_ARGS) { - print_line(".sp", MMAN_nl); + if (MMAN_PP & outflags && MDOC_It != n->parent->tok) + print_line(".PP", 0); + else + print_line(".sp", 0); return(1); }