summaryrefslogtreecommitdiffstats
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
commit0f67958754bbd15e7e78b16906347cd2081370f0 (patch)
treefe439c99846ff231cb10c09007c15393163b0e64 /mdoc_term.c
parente3914afc1290b59c10836bf8fd0fd4d34c1b5b0d (diff)
downloadmandoc-0f67958754bbd15e7e78b16906347cd2081370f0.tar.gz
Updated manuals.7.
Fixed .Dl display.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index cded3abb..fa1eb059 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -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;