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

Diff for /mandoc/Attic/strings.c between version 1.20 and 1.21

version 1.20, 2009/02/26 16:08:11 version 1.21, 2009/02/27 08:20:15
Line 61  mdoc_isescape(const char *p)
Line 61  mdoc_isescape(const char *p)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('e'):          case ('e'):
                 return(2);                  return(2);
           case ('*'):
                   if (0 == *++p || ! isgraph((int)*p))
                           return(0);
                   switch (*p) {
                   case ('('):
                           if (0 == *++p || ! isgraph((int)*p))
                                   return(0);
                           return(4);
                   default:
                           break;
                   }
                   return(3);
         case ('('):          case ('('):
                 if (0 == *++p || ! isgraph((int)*p))                  if (0 == *++p || ! isgraph((int)*p))
                         return(0);                          return(0);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

CVSweb