[BACK]Return to session.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/session.c between version 1.91 and 1.92

version 1.91, 2022/02/22 11:10:41 version 1.92, 2022/02/22 13:31:18
Line 503 
Line 503 
         winlink_stack_push(&s->lastw, s->curw);          winlink_stack_push(&s->lastw, s->curw);
         s->curw = wl;          s->curw = wl;
         if (options_get_number(global_options, "focus-events")) {          if (options_get_number(global_options, "focus-events")) {
                 window_update_focus(old->window);                  if (old != NULL)
                           window_update_focus(old->window);
                 window_update_focus(wl->window);                  window_update_focus(wl->window);
         }          }
         winlink_clear_flags(wl);          winlink_clear_flags(wl);

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92