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

Diff for /mandoc/Attic/validate.c between version 1.73 and 1.74

version 1.73, 2009/03/08 12:40:27 version 1.74, 2009/03/08 18:02:36
Line 685  check_text(struct mdoc *mdoc, int line, int pos, const
Line 685  check_text(struct mdoc *mdoc, int line, int pos, const
                         p += (int)c - 1;                          p += (int)c - 1;
                         continue;                          continue;
                 }                  }
                 return(mdoc_perr(mdoc, line, pos, "invalid escape"));                  if ( ! (MDOC_IGN_ESCAPE & mdoc->pflags))
                           return(mdoc_perr(mdoc, line, pos,
                                           "invalid escape sequence"));
                   if ( ! mdoc_pwarn(mdoc, line, pos, WARN_SYNTAX,
                                           "invalid escape sequence"))
                           return(0);
         }          }
   
         return(1);          return(1);

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74

CVSweb