[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.154 and 1.155

version 1.154, 2015/11/15 14:32:48 version 1.155, 2015/11/20 12:01:19
Line 288 
Line 288 
                 environ_set(global_environ, "PWD", tmp);                  environ_set(global_environ, "PWD", tmp);
   
         global_options = options_create(NULL);          global_options = options_create(NULL);
         options_table_populate_tree(server_options_table, global_options);          options_table_populate_tree(OPTIONS_TABLE_SERVER, global_options);
   
         global_s_options = options_create(NULL);          global_s_options = options_create(NULL);
         options_table_populate_tree(session_options_table, global_s_options);          options_table_populate_tree(OPTIONS_TABLE_SESSION, global_s_options);
         options_set_string(global_s_options, "default-shell", "%s", getshell());          options_set_string(global_s_options, "default-shell", "%s", getshell());
   
         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(OPTIONS_TABLE_WINDOW, global_w_options);
   
         /* 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) {

Legend:
Removed from v.1.154  
changed lines
  Added in v.1.155