summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-07-26 22:26:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-07-26 22:26:05 +0000
commit2ba814d7db70eb5d286afab67d67716cd8d0906e (patch)
tree46ced420234e1238f8ff6bccf26096bef4307c16
parent24ce22505f53c465459aae9ef86b0d767b2d69e7 (diff)
downloadmandoc-2ba814d7db70eb5d286afab67d67716cd8d0906e.tar.gz
mandoc-2ba814d7db70eb5d286afab67d67716cd8d0906e.tar.zst
mandoc-2ba814d7db70eb5d286afab67d67716cd8d0906e.zip
Make `Sm' start no-spacing after the first output word. Fix in both
-T[x]html and -T{pdf,ps,ascii}. Reported by Jason McIntyre.
-rw-r--r--html.c4
-rw-r--r--term.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/html.c b/html.c
index e90644a1..24c17fb2 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.109 2010/07/23 00:08:57 kristaps Exp $ */
+/* $Id: html.c,v 1.110 2010/07/26 22:26:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -419,6 +419,8 @@ print_otag(struct html *h, enum htmltag tag,
if ( ! (h->flags & HTML_NONOSPACE))
h->flags &= ~HTML_NOSPACE;
+ else
+ h->flags |= HTML_NOSPACE;
/* Print out the tag name and attributes. */
diff --git a/term.c b/term.c
index 603a6a34..c0507cda 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.165 2010/07/26 21:58:41 kristaps Exp $ */
+/* $Id: term.c,v 1.166 2010/07/26 22:26:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -502,6 +502,8 @@ term_word(struct termp *p, const char *word)
if ( ! (p->flags & TERMP_NONOSPACE))
p->flags &= ~TERMP_NOSPACE;
+ else
+ p->flags |= TERMP_NOSPACE;
p->flags &= ~TERMP_SENTENCE;