aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-09-25 16:41:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-09-25 16:41:33 +0000
commit9d91b408bd0d0a734262b70bd00b00aeb0c856c1 (patch)
tree14a0c73ac23303e43e790a2b519eb547d142a015 /mdoc_html.c
parent9313a37eec81b11df109fd39ed1815e565d3ec3a (diff)
downloadmandoc-9d91b408bd0d0a734262b70bd00b00aeb0c856c1.tar.gz
mandoc-9d91b408bd0d0a734262b70bd00b00aeb0c856c1.tar.zst
mandoc-9d91b408bd0d0a734262b70bd00b00aeb0c856c1.zip
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.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c6
1 files changed, 4 insertions, 2 deletions
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 <kristaps@bsd.lv>
*
@@ -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 ? "," : ".");
}