summaryrefslogtreecommitdiffstats
path: root/read.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-22 10:35:26 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-22 10:35:26 +0000
commitd7ddf4463ca2aeccf4afd41006e86ebf22df6529 (patch)
tree17458d2ad2c7a6aeca8d7c0cd742714ea7b657ef /read.c
parent643580914487cde30df4724b8d2650d81470351f (diff)
downloadmandoc-d7ddf4463ca2aeccf4afd41006e86ebf22df6529.tar.gz
Add a FATAL error for when no manual type was assigned (you can repeat
this for yourself by having a file consisting only of comments).
Diffstat (limited to 'read.c')
-rw-r--r--read.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/read.c b/read.c
index 357f51dc..664eeeaf 100644
--- a/read.c
+++ b/read.c
@@ -496,16 +496,11 @@ mparse_end(struct mparse *curp)
return;
}
-#if 0
- /* FIXME: NOTE a parser may not have been assigned, yet. */
-
if ( ! (curp->man || curp->mdoc)) {
- /* FIXME: make into an mandoc.h error. */
- fprintf(stderr, "%s: Not a manual\n", curp->file);
+ mandoc_msg(MANDOCERR_NOTMANUAL, curp, 1, 0, NULL);
curp->file_status = MANDOCLEVEL_FATAL;
- goto cleanup;
+ return;
}
-#endif
roff_endparse(curp->roff);
}