=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.186 retrieving revision 1.187 diff -u -p -r1.186 -r1.187 --- mandoc/mdoc_term.c 2010/09/25 15:51:30 1.186 +++ mandoc/mdoc_term.c 2010/09/25 16:41:33 1.187 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.186 2010/09/25 15:51:30 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.187 2010/09/25 16:41:33 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -2130,7 +2130,9 @@ termp____post(DECL_ARGS) /* TODO: %U. */ - p->flags |= TERMP_NOSPACE; + if (NULL == n->parent || MDOC_Rs != n->parent->tok) + return; + if (NULL == n->next) { term_word(p, "."); p->flags |= TERMP_SENTENCE;