summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_validate.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-20 15:05:34 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-20 15:05:34 +0000
commitc6666257b49db6fafacd3e238ad90baeb79952ad (patch)
treeefb4885f03967439e61d2736dd36d7f63aa05cf5 /mdoc_validate.c
parent205c0b3a2b64d0bd6f19e970acc354cc0851cd72 (diff)
downloadmandoc-c6666257b49db6fafacd3e238ad90baeb79952ad.tar.gz
mandoc-c6666257b49db6fafacd3e238ad90baeb79952ad.tar.zst
mandoc-c6666257b49db6fafacd3e238ad90baeb79952ad.zip
Undocumented behaviour in groff: `Bl -column' implies `-compact'.
mandoc now allows fewer columns than the -width specifies.
Diffstat (limited to 'mdoc_validate.c')
-rw-r--r--mdoc_validate.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c
index 9c8d679a..15e10637 100644
--- a/mdoc_validate.c
+++ b/mdoc_validate.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_validate.c,v 1.37 2009/07/18 23:31:04 kristaps Exp $ */
+/* $Id: mdoc_validate.c,v 1.38 2009/07/20 15:05:34 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -1028,11 +1028,20 @@ post_it(POST_ARGS)
c = mdoc->last->child;
for (i = 0; c && MDOC_HEAD == c->type; c = c->next)
i++;
- if (i == cols)
+
+ if (i < cols) {
+ if ( ! mdoc_vwarn(mdoc, mdoc->last->line,
+ mdoc->last->pos, "column "
+ "mismatch: have %d, want %d",
+ i, cols))
+ return(0);
break;
- return(mdoc_verr(mdoc, mdoc->last->line, mdoc->last->pos,
- "column mismatch (have %d, want %d)",
- i, cols));
+ } else if (i == cols)
+ break;
+
+ return(mdoc_verr(mdoc, mdoc->last->line,
+ mdoc->last->pos, "column mismatch: "
+ "have %d, want %d", i, cols));
default:
break;
}