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

Diff for /mandoc/main.c between version 1.103 and 1.104

version 1.103, 2010/08/20 01:02:07 version 1.104, 2010/08/20 08:13:43
Line 551  fdesc(struct curparse *curp)
Line 551  fdesc(struct curparse *curp)
                 }                  }
         }          }
   
         /*  
          * With -Wstop and warnings or errors of at least  
          * the requested level, do not produce output.  
          */  
   
         if (MANDOCLEVEL_OK != exit_status && curp->wstop)  
                 goto cleanup;  
   
         /* NOTE a parser may not have been assigned, yet. */          /* NOTE a parser may not have been assigned, yet. */
   
         if ( ! (man || mdoc)) {          if ( ! (man || mdoc)) {
Line 581  fdesc(struct curparse *curp)
Line 573  fdesc(struct curparse *curp)
                 assert(MANDOCLEVEL_FATAL <= exit_status);                  assert(MANDOCLEVEL_FATAL <= exit_status);
                 goto cleanup;                  goto cleanup;
         }          }
   
           /*
            * With -Wstop and warnings or errors of at least
            * the requested level, do not produce output.
            */
   
           if (MANDOCLEVEL_OK != exit_status && curp->wstop)
                   goto cleanup;
   
         /* If unset, allocate output dev now (if applicable). */          /* If unset, allocate output dev now (if applicable). */
   

Legend:
Removed from v.1.103  
changed lines
  Added in v.1.104

CVSweb