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

Diff for /src/usr.bin/tmux/cmd-switch-client.c between version 1.25 and 1.26

version 1.25, 2015/05/07 14:07:16 version 1.26, 2015/06/07 21:39:39
Line 31 
Line 31 
   
 const struct cmd_entry cmd_switch_client_entry = {  const struct cmd_entry cmd_switch_client_entry = {
         "switch-client", "switchc",          "switch-client", "switchc",
         "lc:npt:rT:", 0, 0,          "lc:Enpt:rT:", 0, 0,
         "[-lnpr] [-c target-client] [-t target-session] [-T key-table]",          "[-Elnpr] [-c target-client] [-t target-session] [-T key-table]",
         CMD_READONLY,          CMD_READONLY,
         cmd_switch_client_exec          cmd_switch_client_exec
 };  };
Line 119 
Line 119 
                 }                  }
         }          }
   
         if (c != NULL && s != c->session) {          if (c != NULL && s != c->session && !args_has(args, 'E')) {
                 update = options_get_string(&s->options, "update-environment");                  update = options_get_string(&s->options, "update-environment");
                 environ_update(update, &c->environ, &s->environ);                  environ_update(update, &c->environ, &s->environ);
         }          }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26