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

Diff for /src/usr.bin/mandoc/mandoc.c between version 1.5 and 1.6

version 1.5, 2009/12/23 22:30:17 version 1.6, 2009/12/24 02:08:14
Line 31 
Line 31 
 int  int
 mandoc_special(const char *p)  mandoc_special(const char *p)
 {  {
         int              c;          int              terminator;    /* Terminator for \s. */
           int              lim;           /* Limit for N in \s. */
           int              c, i;
   
         if ('\\' != *p++)          if ('\\' != *p++)
                 return(0);                  return(0);
Line 70 
Line 72 
         case ('e'):          case ('e'):
                 return(2);                  return(2);
         case ('f'):          case ('f'):
                 if (0 == *++p || ! isgraph((u_char)*p))                  if ('\0' == *++p || ! isgraph((u_char)*p))
                         return(0);                          return(0);
                 return(3);                  return(3);
           case ('s'):
                   if ('\0' == *++p)
                           return(2);
   
                   c = 2;
                   terminator = 0;
                   lim = 1;
   
                   if (*p == '\'') {
                           lim = 0;
                           terminator = 1;
                           ++p;
                           ++c;
                   } else if (*p == '[') {
                           lim = 0;
                           terminator = 2;
                           ++p;
                           ++c;
                   } else if (*p == '(') {
                           lim = 2;
                           terminator = 3;
                           ++p;
                           ++c;
                   }
   
                   if (*p == '+' || *p == '-') {
                           ++p;
                           ++c;
                   }
   
                   if (*p == '\'') {
                           if (terminator)
                                   return(0);
                           lim = 0;
                           terminator = 1;
                           ++p;
                           ++c;
                   } else if (*p == '[') {
                           if (terminator)
                                   return(0);
                           lim = 0;
                           terminator = 2;
                           ++p;
                           ++c;
                   } else if (*p == '(') {
                           if (terminator)
                                   return(0);
                           lim = 2;
                           terminator = 3;
                           ++p;
                           ++c;
                   }
   
                   /* TODO: needs to handle floating point. */
   
                   if ( ! isdigit((u_char)*p))
                           return(0);
   
                   for (i = 0; isdigit((u_char)*p); i++) {
                           if (lim && i >= lim)
                                   break;
                           ++p;
                           ++c;
                   }
   
                   if (terminator && terminator < 3) {
                           if (1 == terminator && *p != '\'')
                                   return(0);
                           if (2 == terminator && *p != ']')
                                   return(0);
                           ++p;
                           ++c;
                   }
   
                   return(c);
         case ('*'):          case ('*'):
                 if (0 == *++p || ! isgraph((u_char)*p))                  if (0 == *++p || ! isgraph((u_char)*p))
                         return(0);                          return(0);

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6