From 9d91b408bd0d0a734262b70bd00b00aeb0c856c1 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 25 Sep 2010 16:41:33 +0000 Subject: A `%T' invoked outside of `Rs' should not produce trailing punctuation. This from a TODO entry. Also stripped the superfluous NOSPACE, which is handled in term_word() or print_text() anyway. --- mdoc_html.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index 2dd1b76f..1d389c91 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -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 ? "," : "."); } -- cgit v1.2.3-56-ge451