[BACK]Return to man.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man.c between version 1.25 and 1.26

version 1.25, 2010/04/25 16:32:19 version 1.26, 2010/05/08 01:52:07
Line 49 
Line 49 
         "invalid nesting of roff declarations", /* WROFFNEST */          "invalid nesting of roff declarations", /* WROFFNEST */
         "scope in roff instructions broken", /* WROFFSCOPE */          "scope in roff instructions broken", /* WROFFSCOPE */
         "document title should be uppercase", /* WTITLECASE */          "document title should be uppercase", /* WTITLECASE */
           "deprecated comment style", /* WBADCOMMENT */
 };  };
   
 const   char *const __man_macronames[MAN_MAX] = {  const   char *const __man_macronames[MAN_MAX] = {
Line 390 
Line 391 
 {  {
         int              i, j;          int              i, j;
         char             sv;          char             sv;
   
           /* Ignore bogus comments. */
   
           if ('\\' == buf[0] && '.' == buf[1] && '\"' == buf[2])
                   return(man_pwarn(m, line, 0, WBADCOMMENT));
   
         /* Literal free-form text whitespace is preserved. */          /* Literal free-form text whitespace is preserved. */
   

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26