summaryrefslogtreecommitdiffstats
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-04 21:05:39 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-04 21:05:39 +0000
commit8c29167218188f6baf91ea99e4a5cd3e70080638 (patch)
treeb391112ae69692eae77d166b5f29f41995db38d7 /mdoc_term.c
parentbf61435dc0abfd7e6ec28cc908580306d14676f3 (diff)
downloadmandoc-8c29167218188f6baf91ea99e4a5cd3e70080638.tar.gz
Fixed `Fd' to format in the right way. Found when confused by what the
hell `Fd' is supposed to do anyway (answer: it's a historical macro and we shouldn't be doing anything with it anyway).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index 94981f19..ffe8905f 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1358,12 +1358,7 @@ static void
termp_fd_post(DECL_ARGS)
{
- if (n->sec != SEC_SYNOPSIS || ! (MDOC_LINE & n->flags))
- return;
-
term_newln(p);
- if (n->next && MDOC_Fd != n->next->tok)
- term_vspace(p);
}