[BACK]Return to term_ascii.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term_ascii.c between version 1.22 and 1.23

version 1.22, 2014/10/26 17:11:18 version 1.23, 2014/10/26 18:06:28
Line 325 
Line 325 
         "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.22  
changed lines
  Added in v.1.23