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

Diff for /src/usr.bin/tmux/cmd-break-pane.c between version 1.7 and 1.8

version 1.7, 2009/10/10 10:02:48 version 1.8, 2009/11/13 19:53:28
Line 31 
Line 31 
 const struct cmd_entry cmd_break_pane_entry = {  const struct cmd_entry cmd_break_pane_entry = {
         "break-pane", "breakp",          "break-pane", "breakp",
         CMD_TARGET_PANE_USAGE " [-d]",          CMD_TARGET_PANE_USAGE " [-d]",
         0, CMD_CHFLAG('d'),          0, "d",
         cmd_target_init,          cmd_target_init,
         cmd_target_parse,          cmd_target_parse,
         cmd_break_pane_exec,          cmd_break_pane_exec,
Line 74 
Line 74 
   
         base_idx = options_get_number(&s->options, "base-index");          base_idx = options_get_number(&s->options, "base-index");
         wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */          wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
         if (!(data->chflags & CMD_CHFLAG('d')))          if (!cmd_check_flag(data->chflags, 'd'))
                 session_select(s, wl->idx);                  session_select(s, wl->idx);
   
         server_redraw_session(s);          server_redraw_session(s);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8