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

Diff for /src/usr.bin/tmux/cmd-select-pane.c between version 1.62 and 1.63

version 1.62, 2020/05/26 08:47:50 version 1.63, 2020/07/03 07:00:12
Line 205 
Line 205 
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);
         }          }
   
         if (c->session != NULL && (c->flags & CLIENT_ACTIVEPANE))          if (c != NULL && c->session != NULL && (c->flags & CLIENT_ACTIVEPANE))
                 activewp = server_client_get_pane(c);                  activewp = server_client_get_pane(c);
         else          else
                 activewp = w->active;                  activewp = w->active;
Line 214 
Line 214 
         if (window_push_zoom(w, args_has(args, 'Z')))          if (window_push_zoom(w, args_has(args, 'Z')))
                 server_redraw_window(w);                  server_redraw_window(w);
         window_redraw_active_switch(w, wp);          window_redraw_active_switch(w, wp);
         if (c->session != NULL && (c->flags & CLIENT_ACTIVEPANE))          if (c != NULL && c->session != NULL && (c->flags & CLIENT_ACTIVEPANE))
                 server_client_set_pane(c, wp);                  server_client_set_pane(c, wp);
         else if (window_set_active_pane(w, wp, 1))          else if (window_set_active_pane(w, wp, 1))
                 cmd_find_from_winlink_pane(current, wl, wp, 0);                  cmd_find_from_winlink_pane(current, wl, wp, 0);

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63