aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2011-01-03 23:53:51 +0000
committerIngo Schwarze <schwarze@openbsd.org>2011-01-03 23:53:51 +0000
commitfc974a57cd34bcbd149a89e1e5927d795492b4aa (patch)
tree42c3baa6d57e10e3528ed913506d63c84312fd2d /mandoc.h
parent0bca0ed29c146972c0bb416f86619a5a280c08cb (diff)
downloadmandoc-fc974a57cd34bcbd149a89e1e5927d795492b4aa.tar.gz
mandoc-fc974a57cd34bcbd149a89e1e5927d795492b4aa.tar.zst
mandoc-fc974a57cd34bcbd149a89e1e5927d795492b4aa.zip
Partial cleanup of argument count validation in mdoc(7):
* Do not segfault on empty .Db, .Rs, .Sm, and .St. * Let check_count() really throw the requested level, not always ERROR. * Downgrade most bad argument counts from ERROR to WARNING. * And some related internal cleanup. Looks fine to kristaps@. Note that the macros using eerr_ge1() still need to be checked at a later time; but as all the others are done, let's use what we already have.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/mandoc.h b/mandoc.h
index c828ba94..0f28aafc 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,6 +1,6 @@
-/* $Id: mandoc.h,v 1.45 2011/01/03 13:59:21 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.46 2011/01/03 23:53:51 schwarze Exp $ */
/*
- * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
+ * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -75,6 +75,7 @@ enum mandocerr {
/* related to missing macro arguments */
MANDOCERR_MACROEMPTY, /* skipping empty macro */
+ MANDOCERR_ARGCWARN, /* argument count wrong */
MANDOCERR_DISPTYPE, /* missing display type */
MANDOCERR_LISTFIRST, /* list type must come first */
MANDOCERR_NOWIDTHARG, /* tag lists require a width argument */