[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.50 and 1.51

version 1.50, 2019/11/28 09:45:15 version 1.51, 2020/04/13 08:26:27
Line 48 
Line 48 
 static enum cmd_retval  static enum cmd_retval
 cmd_break_pane_exec(struct cmd *self, struct cmdq_item *item)  cmd_break_pane_exec(struct cmd *self, struct cmdq_item *item)
 {  {
         struct args             *args = self->args;          struct args             *args = cmd_get_args(self);
         struct cmd_find_state   *current = &item->shared->current;          struct cmd_find_state   *current = &item->shared->current;
         struct client           *c = cmd_find_client(item, NULL, 1);          struct client           *c = cmd_find_client(item, NULL, 1);
         struct winlink          *wl = item->source.wl;          struct winlink          *wl = item->source.wl;
Line 98 
Line 98 
         if (idx == -1)          if (idx == -1)
                 idx = -1 - options_get_number(dst_s->options, "base-index");                  idx = -1 - options_get_number(dst_s->options, "base-index");
         wl = session_attach(dst_s, w, idx, &cause); /* can't fail */          wl = session_attach(dst_s, w, idx, &cause); /* can't fail */
         if (!args_has(self->args, 'd')) {          if (!args_has(args, 'd')) {
                 session_select(dst_s, wl->idx);                  session_select(dst_s, wl->idx);
                 cmd_find_from_session(current, dst_s, 0);                  cmd_find_from_session(current, dst_s, 0);
         }          }

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51