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

Diff for /src/usr.bin/tmux/tty.c between version 1.412 and 1.413

version 1.412, 2021/11/29 11:05:28 version 1.413, 2021/12/06 10:08:42
Line 937 
Line 937 
         struct client   *c;          struct client   *c;
   
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {
                 if (c->session != NULL && c->session->curw->window == w)                  if (c->session != NULL &&
                       c->session->curw != NULL &&
                       c->session->curw->window == w)
                         tty_update_client_offset(c);                          tty_update_client_offset(c);
         }          }
 }  }

Legend:
Removed from v.1.412  
changed lines
  Added in v.1.413