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

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

version 1.12, 2010/01/01 17:14:29 version 1.13, 2010/03/31 07:13:53
Line 61  mdoc_hash_init(void)
Line 61  mdoc_hash_init(void)
         }          }
 }  }
   
 int  enum mdoct
 mdoc_hash_find(const char *p)  mdoc_hash_find(const char *p)
 {  {
         int               major, i, j;          int               major, i, j;
Line 85  mdoc_hash_find(const char *p)
Line 85  mdoc_hash_find(const char *p)
                 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]))
                         return(i);                          return((enum mdoct)i);
         }          }
   
         return(MDOC_MAX);          return(MDOC_MAX);

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

CVSweb