From 9313a37eec81b11df109fd39ed1815e565d3ec3a Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 25 Sep 2010 15:51:30 +0000 Subject: Add `Rs' vertical-space in -T[x]html "SEE ALSO" section. Remove corresponding TODO entry. Also have the "." after an `Rs' block trigger inter-sentence spacing. --- mdoc_term.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index c2ba9eaf..7c70a1a5 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.185 2010/09/23 20:40:00 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.186 2010/09/25 15:51:30 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -2131,7 +2131,11 @@ termp____post(DECL_ARGS) /* TODO: %U. */ p->flags |= TERMP_NOSPACE; - term_word(p, n->next ? "," : "."); + if (NULL == n->next) { + term_word(p, "."); + p->flags |= TERMP_SENTENCE; + } else + term_word(p, ","); } -- cgit v1.2.3