]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_validate.c
"sys/param.h is for kernel interface programs.
[mandoc.git] / man_validate.c
index 16561b2b7b4c7b09e2b284b24394225cdc08bcb1..e5b1d65e67928549368fb626fe5f5790b1c50c21 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: man_validate.c,v 1.46 2010/07/20 14:56:42 kristaps Exp $ */
+/*     $Id: man_validate.c,v 1.49 2010/08/20 01:02:07 schwarze Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
+ * Copyright (c) 2008, 2009, 2010 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
@@ -83,9 +83,9 @@ static        const struct man_valid man_valids[MAN_MAX] = {
        { NULL, NULL }, /* I */
        { NULL, NULL }, /* IR */
        { NULL, NULL }, /* RI */
-       { NULL, posts_eq0 }, /* na */
+       { NULL, posts_eq0 }, /* na */ /* FIXME: should warn only. */
        { NULL, NULL }, /* i */
-       { NULL, posts_le1 }, /* sp */
+       { NULL, posts_le1 }, /* sp */ /* FIXME: should warn only. */
        { pres_bline, posts_eq0 }, /* nf */
        { pres_bline, posts_eq0 }, /* fi */
        { NULL, NULL }, /* r */
@@ -94,10 +94,11 @@ static      const struct man_valid man_valids[MAN_MAX] = {
        { NULL, NULL }, /* DT */
        { NULL, NULL }, /* UC */
        { NULL, NULL }, /* PD */
-       { NULL, posts_le1 }, /* Sp */
-       { pres_bline, posts_le1 }, /* Vb */
+       { NULL, posts_le1 }, /* Sp */ /* FIXME: should warn only. */
+       { pres_bline, posts_le1 }, /* Vb */ /* FIXME: should warn only. */
        { pres_bline, posts_eq0 }, /* Ve */
        { NULL, NULL }, /* AT */
+       { NULL, NULL }, /* in */
 };
 
 
@@ -232,12 +233,8 @@ check_text(CHKARGS)
                if (c) {
                        p += c - 1;
                        pos += c - 1;
-                       continue;
-               }
-
-               c = man_pmsg(m, n->line, pos, MANDOCERR_BADESCAPE);
-               if ( ! (MAN_IGN_ESCAPE & m->pflags) && ! c)
-                       return(c);
+               } else
+                       man_pmsg(m, n->line, pos, MANDOCERR_BADESCAPE);
        }
 
        return(1);