diff options
Diffstat (limited to 'validate.c')
-rw-r--r-- | validate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1187,8 +1187,8 @@ post_it(POST_ARGS) if (mdoc->last->body->child) if ( ! mwarn(mdoc, WNOMULTILINE)) return(0); - c = mdoc->last->head->child; - for (i = 0; c; c = c->next) + c = mdoc->last->head; + for (i = 0; c && MDOC_HEAD == c->type; c = c->next) i++; if (i == cols) break; |