aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit12bd5ba1acfc34cc1274b3b3d2c1a9e28978bb6e (patch)
tree3f52fef3639d5f03ff253146f32112017cc0ce7f /mdoc_term.c
parentcdd2b3c33fbd3e98ec382b355b933fe87e0bd605 (diff)
downloadmandoc-12bd5ba1acfc34cc1274b3b3d2c1a9e28978bb6e.tar.gz
mandoc-12bd5ba1acfc34cc1274b3b3d2c1a9e28978bb6e.tar.zst
mandoc-12bd5ba1acfc34cc1274b3b3d2c1a9e28978bb6e.zip
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.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index 8ae1f988..98ce0bbe 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.136 2010/06/01 14:51:09 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.137 2010/06/04 21:05:39 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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);
}