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

Diff for /src/usr.bin/tmux/alerts.c between version 1.16 and 1.17

version 1.16, 2016/11/01 09:07:18 version 1.17, 2017/04/21 14:09:44
Line 178 
Line 178 
                 s = wl->session;                  s = wl->session;
                 if (s->curw != wl) {                  if (s->curw != wl) {
                         wl->flags |= WINLINK_BELL;                          wl->flags |= WINLINK_BELL;
                         notify_winlink("alert-bell", s, wl);                          notify_winlink("alert-bell", wl);
                 }                  }
   
                 if (s->flags & SESSION_ALERTED)                  if (s->flags & SESSION_ALERTED)
Line 239 
Line 239 
                         continue;                          continue;
   
                 wl->flags |= WINLINK_ACTIVITY;                  wl->flags |= WINLINK_ACTIVITY;
                 notify_winlink("alert-activity", s, wl);                  notify_winlink("alert-activity", wl);
   
                 if (s->flags & SESSION_ALERTED)                  if (s->flags & SESSION_ALERTED)
                         continue;                          continue;
Line 275 
Line 275 
                 if (s->curw == wl)                  if (s->curw == wl)
                         continue;                          continue;
                 wl->flags |= WINLINK_SILENCE;                  wl->flags |= WINLINK_SILENCE;
                 notify_winlink("alert-silence", s, wl);                  notify_winlink("alert-silence", wl);
   
                 if (s->flags & SESSION_ALERTED)                  if (s->flags & SESSION_ALERTED)
                         continue;                          continue;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17