[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.150 and 1.151

version 1.150, 2015/11/11 23:23:33 version 1.151, 2015/11/12 11:09:11
Line 291 
Line 291 
         global_w_options = options_create(NULL);          global_w_options = options_create(NULL);
         options_table_populate_tree(window_options_table, global_w_options);          options_table_populate_tree(window_options_table, global_w_options);
   
         /* Enable UTF-8 if the first client is on UTF-8 terminal. */  
         if (flags & CLIENT_UTF8) {  
                 options_set_number(global_s_options, "status-utf8", 1);  
                 options_set_number(global_w_options, "utf8", 1);  
         }  
   
         /* Override keys to vi if VISUAL or EDITOR are set. */          /* Override keys to vi if VISUAL or EDITOR are set. */
         if ((s = getenv("VISUAL")) != NULL || (s = getenv("EDITOR")) != NULL) {          if ((s = getenv("VISUAL")) != NULL || (s = getenv("EDITOR")) != NULL) {
                 if (strrchr(s, '/') != NULL)                  if (strrchr(s, '/') != NULL)

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.151