summaryrefslogtreecommitdiffstats
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-07 11:47:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-07 11:47:17 +0000
commit3b3fe038a3f8e844db507331706e75a2fbab0d87 (patch)
tree612180dd4afb8d0b3cb5cc421bd8b180a02ab267 /mdoc_term.c
parent46333ce833349b3542096c725c78ada3ca4b2811 (diff)
downloadmandoc-3b3fe038a3f8e844db507331706e75a2fbab0d87.tar.gz
Made `In' handling work in new-groff style (see mdoc.samples).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index f1055069..5cd50eee 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1838,8 +1838,12 @@ static int
termp_in_pre(DECL_ARGS)
{
+ /* XXX This conforms to new-groff style. */
TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]);
- term_word(p, "#include");
+
+ if (SEC_SYNOPSIS == node->sec)
+ term_word(p, "#include");
+
term_word(p, "<");
p->flags |= TERMP_NOSPACE;
return(1);
@@ -1854,9 +1858,16 @@ termp_in_post(DECL_ARGS)
p->flags |= TERMP_NOSPACE;
term_word(p, ">");
- term_newln(p);
if (SEC_SYNOPSIS != node->sec)
return;
+
+ term_newln(p);
+ /*
+ * XXX Not entirely correct. If `.In foo bar' is specified in
+ * the SYNOPSIS section, then it produces a single break after
+ * the <foo>; mandoc asserts a vertical space. Since this
+ * construction is rarely used, I think it's fine.
+ */
if (node->next && MDOC_In != node->next->tok)
term_vspace(p);
}