summaryrefslogtreecommitdiffstats
path: root/mdoc_validate.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-12-31 07:46:07 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-12-31 07:46:07 +0000
commit2ec872dc0da85b23fb0d72c9d83ec1aa8f06ea19 (patch)
tree2a44175f93c0a79365ec8978d7131fe0e36c2f03 /mdoc_validate.c
parentc307b01e3d5709e7d34106b6fe8e98b468bf33f8 (diff)
downloadmandoc-2ec872dc0da85b23fb0d72c9d83ec1aa8f06ea19.tar.gz
Cleanup, no functional change:
Use the new parser flag ROFF_NOFILL in the mdoc(7) parser, too, instead of the old MDOC_LITERAL, which was an alias for the former MAN_LITERAL.
Diffstat (limited to 'mdoc_validate.c')
-rw-r--r--mdoc_validate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c
index 58755a2e..b02c17ff 100644
--- a/mdoc_validate.c
+++ b/mdoc_validate.c
@@ -338,7 +338,7 @@ mdoc_validate(struct roff_man *mdoc)
check_text(mdoc, n->line, n->pos, n->string);
if (np->tok != MDOC_Ql && np->tok != MDOC_Dl &&
(np->tok != MDOC_Bd ||
- (mdoc->flags & MDOC_LITERAL) == 0) &&
+ (mdoc->flags & ROFF_NOFILL) == 0) &&
(np->tok != MDOC_It || np->type != ROFFT_HEAD ||
np->parent->parent->norm->Bl.type != LIST_diag))
check_text_em(mdoc, n->line, n->pos, n->string);
@@ -411,7 +411,7 @@ check_text(struct roff_man *mdoc, int ln, int pos, char *p)
{
char *cp;
- if (MDOC_LITERAL & mdoc->flags)
+ if (mdoc->flags & ROFF_NOFILL)
return;
for (cp = p; NULL != (p = strchr(p, '\t')); p++)