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

Diff for /mandoc/chars.c between version 1.22 and 1.23

version 1.22, 2010/07/17 09:21:39 version 1.23, 2010/07/18 12:10:08
Line 195  find(struct tbl *tab, const char *p, size_t sz, int ty
Line 195  find(struct tbl *tab, const char *p, size_t sz, int ty
         int               hash;          int               hash;
   
         assert(p);          assert(p);
         assert(sz > 0);          if (0 == sz)
                   return(NULL);
   
         if (p[0] < PRINT_LO || p[0] > PRINT_HI)          if (p[0] < PRINT_LO || p[0] > PRINT_HI)
                 return(NULL);                  return(NULL);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb