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

Diff for /src/usr.bin/mandoc/Attic/mdoc_hash.c between version 1.12 and 1.13

version 1.12, 2011/04/24 16:22:02 version 1.13, 2011/09/18 15:54:48
Line 27 
Line 27 
 #include "mandoc.h"  #include "mandoc.h"
 #include "libmdoc.h"  #include "libmdoc.h"
   
 static  u_char           table[27 * 13];  static  unsigned char    table[27 * 12];
   
 /*  /*
  * XXX - this hash has global scope, so if intended for use as a library   * XXX - this hash has global scope, so if intended for use as a library
Line 44 
Line 44 
         for (i = 0; i < (int)MDOC_MAX; i++) {          for (i = 0; i < (int)MDOC_MAX; i++) {
                 p = mdoc_macronames[i];                  p = mdoc_macronames[i];
   
                 if (isalpha((u_char)p[1]))                  if (isalpha((unsigned char)p[1]))
                         major = 13 * (tolower((u_char)p[1]) - 97);                          major = 12 * (tolower((unsigned char)p[1]) - 97);
                 else                  else
                         major = 13 * 26;                          major = 12 * 26;
   
                 for (j = 0; j < 13; j++)                  for (j = 0; j < 12; j++)
                         if (UCHAR_MAX == table[major + j]) {                          if (UCHAR_MAX == table[major + j]) {
                                 table[major + j] = (u_char)i;                                  table[major + j] = (unsigned char)i;
                                 break;                                  break;
                         }                          }
   
                 assert(j < 13);                  assert(j < 12);
         }          }
 }  }
   
Line 66 
Line 66 
   
         if (0 == p[0])          if (0 == p[0])
                 return(MDOC_MAX);                  return(MDOC_MAX);
         if ( ! isalpha((u_char)p[0]) && '%' != p[0])          if ( ! isalpha((unsigned char)p[0]) && '%' != p[0])
                 return(MDOC_MAX);                  return(MDOC_MAX);
   
         if (isalpha((u_char)p[1]))          if (isalpha((unsigned char)p[1]))
                 major = 13 * (tolower((u_char)p[1]) - 97);                  major = 12 * (tolower((unsigned char)p[1]) - 97);
         else if ('1' == p[1])          else if ('1' == p[1])
                 major = 13 * 26;                  major = 12 * 26;
         else          else
                 return(MDOC_MAX);                  return(MDOC_MAX);
   
         if (p[2] && p[3])          if (p[2] && p[3])
                 return(MDOC_MAX);                  return(MDOC_MAX);
   
         for (j = 0; j < 13; j++) {          for (j = 0; j < 12; j++) {
                 if (UCHAR_MAX == (i = table[major + j]))                  if (UCHAR_MAX == (i = table[major + j]))
                         break;                          break;
                 if (0 == strcmp(p, mdoc_macronames[i]))                  if (0 == strcmp(p, mdoc_macronames[i]))

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13