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

Diff for /mandoc/Attic/man_hash.c between version 1.35 and 1.36

version 1.35, 2016/07/15 18:03:45 version 1.36, 2017/04/24 23:06:18
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 60  man_hash_init(void)
Line 60  man_hash_init(void)
   
         memset(table, UCHAR_MAX, sizeof(table));          memset(table, UCHAR_MAX, sizeof(table));
   
         for (i = 0; i < (int)MAN_MAX; i++) {          for (i = 0; i < (int)(MAN_MAX - MAN_TH); i++) {
                 x = man_macronames[i][0];                  x = *roff_name[MAN_TH + i];
   
                 assert(isalpha((unsigned char)x));                  assert(isalpha((unsigned char)x));
   
Line 77  man_hash_init(void)
Line 77  man_hash_init(void)
         }          }
 }  }
   
 int  enum roff_tok
 man_hash_find(const char *tmp)  man_hash_find(const char *tmp)
 {  {
         int              x, y, i;          int              x, y, i;
         int              tok;  
   
         if ('\0' == (x = tmp[0]))          if ('\0' == (x = tmp[0]))
                 return TOKEN_NONE;                  return TOKEN_NONE;
Line 94  man_hash_find(const char *tmp)
Line 93  man_hash_find(const char *tmp)
                 if (UCHAR_MAX == (y = table[x + i]))                  if (UCHAR_MAX == (y = table[x + i]))
                         return TOKEN_NONE;                          return TOKEN_NONE;
   
                 tok = y;                  if (strcmp(tmp, roff_name[MAN_TH + y]) == 0)
                 if (0 == strcmp(tmp, man_macronames[tok]))                          return MAN_TH + y;
                         return tok;  
         }          }
   
         return TOKEN_NONE;          return TOKEN_NONE;

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36

CVSweb