diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-25 21:24:12 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-25 21:24:12 +0000 |
commit | 0b2f31ffd79000c7317bc9473f3d7dc4c3fa64d4 (patch) | |
tree | 1df49cfe2f62dec7c3a46eb4fc06e96e5a0a55a3 /mdoc_term.c | |
parent | 8b02646f4fec38e60672aa1647f1ea0033d8a7c1 (diff) | |
download | mandoc-0b2f31ffd79000c7317bc9473f3d7dc4c3fa64d4.tar.gz |
Oops, .Fa never breaks the output line in the middle of any of its
arguments, not even outside SYNOPSIS mode. Quite surprising as .Fn
does break the line in the middle of its arguments outside SYNOPSIS
mode, and only doesn't do that in SYNOPSIS mode. Wonders of groff...
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 404942b6..5b4feedd 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1601,8 +1601,7 @@ termp_fa_pre(DECL_ARGS) for (nn = n->child; nn; nn = nn->next) { term_fontpush(p, TERMFONT_UNDER); - if (MDOC_SYNPRETTY & n->flags) - p->flags |= TERMP_NBRWORD; + p->flags |= TERMP_NBRWORD; term_word(p, nn->string); term_fontpop(p); |