From 5134b2528e28222c6cfe6ab2b2977ea107397999 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 22 Feb 2009 19:23:48 +0000 Subject: Fixed `.Pf' handling. System now supports all mdocml manual pages. --- term.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'term.c') diff --git a/term.c b/term.c index 5b7111dc..b9e4a936 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.8 2009/02/22 15:50:45 kristaps Exp $ */ +/* $Id: term.c,v 1.9 2009/02/22 19:23:48 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -319,8 +319,11 @@ word(struct termp *p, const char *word) len = strlen(word); assert(len > 0); - if (mdoc_isdelim(word)) - p->flags |= TERMP_NOSPACE; + if (mdoc_isdelim(word)) { + if ( ! (p->flags & TERMP_IGNDELIM)) + p->flags |= TERMP_NOSPACE; + p->flags &= ~TERMP_IGNDELIM; + } /* LINTED */ for (j = i = 0; i < len; i++) { -- cgit v1.2.3