=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- mandoc/mdoc_html.c 2010/09/25 15:51:30 1.105 +++ mandoc/mdoc_html.c 2010/09/25 16:41:33 1.106 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.105 2010/09/25 15:51:30 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.106 2010/09/25 16:41:33 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -2263,7 +2263,9 @@ mdoc__x_post(MDOC_ARGS) /* TODO: %U */ - h->flags |= HTML_NOSPACE; + if (NULL == n->parent || MDOC_Rs != n->parent->tok) + return; + print_text(h, n->next ? "," : "."); }