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

Diff for /src/usr.bin/tmux/tmux.c between version 1.168 and 1.169

version 1.168, 2016/03/05 16:08:38 version 1.169, 2016/05/04 21:29:47
Line 193 
Line 193 
                 if (setlocale(LC_CTYPE, "") == NULL)                  if (setlocale(LC_CTYPE, "") == NULL)
                         errx(1, "invalid LC_ALL, LC_CTYPE or LANG");                          errx(1, "invalid LC_ALL, LC_CTYPE or LANG");
                 s = nl_langinfo(CODESET);                  s = nl_langinfo(CODESET);
                 if (strcasecmp(s, "UTF-8") != 0 &&                  if (strcasecmp(s, "UTF-8") != 0 && strcasecmp(s, "UTF8") != 0)
                     strcasecmp(s, "UTF8") != 0)  
                         errx(1, "need UTF-8 locale (LC_CTYPE) but have %s", s);                          errx(1, "need UTF-8 locale (LC_CTYPE) but have %s", s);
         }          }
   

Legend:
Removed from v.1.168  
changed lines
  Added in v.1.169