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

Diff for /mandoc/Attic/ascii.c between version 1.5 and 1.6

version 1.5, 2009/04/05 16:34:22 version 1.6, 2009/04/12 19:19:57
Line 137  term_a2ascii(void *arg, const char *p, size_t sz, size
Line 137  term_a2ascii(void *arg, const char *p, size_t sz, size
   
         assert(p);          assert(p);
         assert(sz > 0);          assert(sz > 0);
         assert(p[0] >= ASCII_PRINT_LO && p[0] <= ASCII_PRINT_HI);  
           if (p[0] < ASCII_PRINT_LO || p[0] > ASCII_PRINT_HI)
                   return(NULL);
   
   
         /*          /*
          * Lookup the symbol in the symbol hash.  See ascii2htab for the           * Lookup the symbol in the symbol hash.  See ascii2htab for the

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

CVSweb