diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-22 15:30:30 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-22 15:30:30 +0000 |
commit | 95efc599afc482072cf9239b5f78898fa1ea21e1 (patch) | |
tree | 0db179a7886f6e53ad8b19aa52f00a3fc11ede80 | |
parent | bedb65e1b9182d146e4d3dce643e0c4c85d91605 (diff) | |
download | mandoc-95efc599afc482072cf9239b5f78898fa1ea21e1.tar.gz |
Make empty sections and parts (SH, SS, RS) only produce a warning if it
has no children. Noted by Brad, added to TODO by schwarze@.
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | index.sgml | 2 | ||||
-rw-r--r-- | man_validate.c | 6 |
3 files changed, 5 insertions, 7 deletions
@@ -278,10 +278,6 @@ * error reporting issues ************************************************************************ -- empty .RS blocks in man(7) should be warnings, not errors, - see for example qemu(1); - brad@comstyle.com Sat Mar 19 00:36:56 2011 - ************************************************************************ * performance issues ************************************************************************ @@ -40,7 +40,7 @@ <P> <SPAN CLASS="nm">mdocml</SPAN> consists of the <A HREF="mandoc.3.html">libmandoc</A> validating - compilers and <A HREF="mandoc.1.html">mandoc</A>, which interfaces with the compiler library to format + compiler and <A HREF="mandoc.1.html">mandoc</A>, which interfaces with the compiler library to format output for UNIX terminals, XHTML, HTML, PostScript, and PDF. It is a <A CLASS="external" HREF="http://bsd.lv/">BSD.lv</A> project. </P> diff --git a/man_validate.c b/man_validate.c index 1325e776..b9e1ff51 100644 --- a/man_validate.c +++ b/man_validate.c @@ -323,7 +323,8 @@ check_sec(CHKARGS) man_nmsg(m, n, MANDOCERR_SYNTARGCOUNT); return(0); } else if (MAN_BODY == n->type && 0 == n->nchild) - man_nmsg(m, n, MANDOCERR_NOBODY); + mandoc_msg(MANDOCERR_ARGCWARN, m->parse, n->line, + n->pos, "want children (have none)"); return(1); } @@ -334,7 +335,8 @@ check_part(CHKARGS) { if (MAN_BODY == n->type && 0 == n->nchild) - man_nmsg(m, n, MANDOCERR_NOBODY); + mandoc_msg(MANDOCERR_ARGCWARN, m->parse, n->line, + n->pos, "want children (have none)"); return(1); } |