summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdoc_validate.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c
index c25bbf6d..156c67e7 100644
--- a/mdoc_validate.c
+++ b/mdoc_validate.c
@@ -1448,11 +1448,8 @@ post_bl_block_tag(POST_ARGS)
assert(MDOC_BLOCK == nn->type);
nn = nn->head->child;
- if (nn == NULL) {
- /* No -width for .Bl and first .It is emtpy */
- mdoc_nmsg(mdoc, n, MANDOCERR_NOWIDTHARG);
+ if (nn == NULL)
break;
- }
if (MDOC_TEXT == nn->type) {
sz = strlen(nn->string) + 1;
@@ -1461,8 +1458,6 @@ post_bl_block_tag(POST_ARGS)
if (0 != (ssz = mdoc_macro2len(nn->tok)))
sz = ssz;
- else
- mdoc_nmsg(mdoc, n, MANDOCERR_NOWIDTHARG);
break;
}