=================================================================== RCS file: /cvs/mandoc/man_validate.c,v retrieving revision 1.19 retrieving revision 1.21 diff -u -p -r1.19 -r1.21 --- mandoc/man_validate.c 2009/08/19 09:14:50 1.19 +++ mandoc/man_validate.c 2009/08/20 11:51:07 1.21 @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.19 2009/08/19 09:14:50 kristaps Exp $ */ +/* $Id: man_validate.c,v 1.21 2009/08/20 11:51:07 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -84,7 +84,8 @@ static const struct man_valid man_valids[MAN_MAX] = { { pres_bline, posts_eq0 }, /* fi */ { NULL, NULL }, /* r */ { NULL, NULL }, /* RE */ - { NULL, NULL }, /* RS */ + { NULL, NULL }, /* RS */ /* FIXME: warn if empty body. */ + { NULL, NULL }, /* DT */ }; @@ -138,8 +139,6 @@ man_valid_post(struct man *m) static int check_root(CHKARGS) { - - /* FIXME: closing out explicit scope! */ /* XXX - make this into a warning? */ if (MAN_BLINE & m->flags)