=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.270 retrieving revision 1.271 diff -u -p -r1.270 -r1.271 --- mandoc/mdoc_term.c 2014/07/03 23:24:56 1.270 +++ mandoc/mdoc_term.c 2014/07/07 15:03:43 1.271 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.270 2014/07/03 23:24:56 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.271 2014/07/07 15:03:43 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze @@ -275,8 +275,11 @@ terminal_mdoc(void *arg, const struct mdoc *mdoc) term_begin(p, print_mdoc_head, print_mdoc_foot, meta); - if (n->child) + if (n->child) { + if (MDOC_Sh != n->child->tok) + term_vspace(p); print_mdoc_nodelist(p, NULL, meta, n->child); + } term_end(p); }