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

Diff for /mandoc/term_ascii.c between version 1.34 and 1.35

version 1.34, 2014/10/26 17:12:03 version 1.35, 2014/10/26 18:07:28
Line 236  ascii_uc2str(int uc)
Line 236  ascii_uc2str(int uc)
         "j",    "DZ",   "D",    "dz",   "G",    "g",    "HV",   "W",          "j",    "DZ",   "D",    "dz",   "G",    "g",    "HV",   "W",
         "N",    "n",    "A",    "a",    "AE",   "ae",   "O",    "o"};          "N",    "n",    "A",    "a",    "AE",   "ae",   "O",    "o"};
   
         if (uc < 0 || (size_t)uc >= sizeof(tab)/sizeof(tab[0]))          if (uc < 0)
                 return("<?>");                  return("<?>");
         return(tab[uc]);          if ((size_t)uc < sizeof(tab)/sizeof(tab[0]))
                   return(tab[uc]);
           return(mchars_uc2str(uc));
 }  }
   
 static size_t  static size_t

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

CVSweb