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

Diff for /mandoc/Attic/validate.c between version 1.87 and 1.88

version 1.87, 2009/03/21 09:42:07 version 1.88, 2009/03/21 09:48:30
Line 707  check_text(struct mdoc *mdoc, int line, int pos, const
Line 707  check_text(struct mdoc *mdoc, int line, int pos, const
                 if ('\\' != *p)                  if ('\\' != *p)
                         continue;                          continue;
   
                 if ((c = mdoc_isescape(p))) {                  c = mdoc_isescape(p);
                   if (c) {
                         p += (int)c - 1;                          p += (int)c - 1;
                         continue;                          continue;
                 }                  }

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.88

CVSweb