diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-11-30 05:29:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-11-30 05:29:00 +0000 |
commit | e43c73ab8f3bb75f87f1c6bbba2b3ae2baad3cd3 (patch) | |
tree | 703bad3ba7634f8cdeb4be5d26ef773d373ea8c1 /mdoc_term.c | |
parent | 672fb7896ca2c19f7313864be8ddba51337a45c0 (diff) | |
download | mandoc-e43c73ab8f3bb75f87f1c6bbba2b3ae2baad3cd3.tar.gz |
Multiple fixes with respect to .Pf:
* The first argument of .Pf is not parsed.
* Normal delimiter handling does not apply to the first argument of .Pf.
* Warn if nothing follows a prefix (inspired by groff_mdoc(7)).
* In that case, do not suppress spacing.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index be0a2ab0..4b4d12d9 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1734,7 +1734,8 @@ static void termp_pf_post(DECL_ARGS) { - p->flags |= TERMP_NOSPACE; + if ( ! (n->next == NULL || n->next->flags & MDOC_LINE)) + p->flags |= TERMP_NOSPACE; } static int |