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

Diff for /src/usr.bin/tmux/server-fn.c between version 1.82 and 1.83

version 1.82, 2015/04/21 21:24:49 version 1.83, 2015/04/22 15:32:33
Line 199 
Line 199 
          */           */
   
         RB_FOREACH(s, sessions, &sessions) {          RB_FOREACH(s, sessions, &sessions) {
                 if (session_has(s, w) != NULL)                  if (session_has(s, w))
                         server_status_session(s);                          server_status_session(s);
         }          }
 }  }
Line 268 
Line 268 
                 s = next_s;                  s = next_s;
                 next_s = RB_NEXT(sessions, &sessions, s);                  next_s = RB_NEXT(sessions, &sessions, s);
   
                 if (session_has(s, w) == NULL)                  if (!session_has(s, w))
                         continue;                          continue;
                 server_unzoom_window(w);                  server_unzoom_window(w);
                 while ((wl = winlink_find_by_window(&s->windows, w)) != NULL) {                  while ((wl = winlink_find_by_window(&s->windows, w)) != NULL) {

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83