summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-04-03 13:17:26 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-04-03 13:17:26 +0000
commit0d46b9f68e7b2bc445320b4574e0aeafa473df44 (patch)
tree2da922ad4bb5ebc92271b41a94b4c7517377ba6d /mdoc_term.c
parent320aeed3e443b3e6d5f4a692406e2835ba74a12b (diff)
downloadmandoc-0d46b9f68e7b2bc445320b4574e0aeafa473df44.tar.gz
mandoc-0d46b9f68e7b2bc445320b4574e0aeafa473df44.tar.zst
mandoc-0d46b9f68e7b2bc445320b4574e0aeafa473df44.zip
Updated manuals.7.
Fixed .Dl display.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index 9b40a4ca..80c22fb8 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.3 2009/03/26 16:23:22 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.4 2009/04/03 13:17:26 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -1427,7 +1427,7 @@ static int
termp_d1_pre(DECL_ARGS)
{
- if (MDOC_BODY != node->type)
+ if (MDOC_BLOCK != node->type)
return(1);
term_newln(p);
p->offset += (pair->offset = INDENT);
@@ -1440,7 +1440,7 @@ static void
termp_d1_post(DECL_ARGS)
{
- if (MDOC_BODY != node->type)
+ if (MDOC_BLOCK != node->type)
return;
term_newln(p);
p->offset -= pair->offset;