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

Diff for /mandoc/chars.c between version 1.60 and 1.61

version 1.60, 2014/10/26 17:12:03 version 1.61, 2014/10/26 18:07:28
Line 149  mchars_spec2str(const struct mchars *arg,
Line 149  mchars_spec2str(const struct mchars *arg,
         return(ln->ascii);          return(ln->ascii);
 }  }
   
   const char *
   mchars_uc2str(int uc)
   {
           int      i;
   
           for (i = 0; i < LINES_MAX; i++)
                   if (uc == lines[i].unicode)
                           return(lines[i].ascii);
           return("<?>");
   }
   
 static const struct ln *  static const struct ln *
 find(const struct mchars *tab, const char *p, size_t sz)  find(const struct mchars *tab, const char *p, size_t sz)
 {  {

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb