[BACK]Return to man_validate.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man_validate.c between version 1.17 and 1.18

version 1.17, 2009/08/13 11:45:29 version 1.18, 2009/08/18 11:46:44
Line 289  static int
Line 289  static int
 check_eline(CHKARGS)  check_eline(CHKARGS)
 {  {
   
         if ( ! (MAN_ELINE & m->flags))          if (MAN_ELINE & m->flags)
                 return(1);                  return(man_nerr(m, n, WLNSCOPE));
         return(man_nerr(m, n, WLNSCOPE));          return(1);
 }  }
   
   
Line 299  static int
Line 299  static int
 check_bline(CHKARGS)  check_bline(CHKARGS)
 {  {
   
         if ( ! (MAN_BLINE & m->flags))          if (MAN_BLINE & m->flags)
                 return(1);                  return(man_nerr(m, n, WLNSCOPE));
         return(man_nerr(m, n, WLNSCOPE));          if (MAN_ELINE & m->flags)
                   return(man_nerr(m, n, WLNSCOPE));
           return(1);
 }  }
   

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb