[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.32 and 1.33

version 1.32, 2009/12/22 10:20:08 version 1.33, 2010/01/03 12:51:05
Line 165 
Line 165 
 }  }
   
 void  void
   server_redraw_window_borders(struct window *w)
   {
           struct client   *c;
           u_int            i;
   
           for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   c = ARRAY_ITEM(&clients, i);
                   if (c == NULL || c->session == NULL)
                           continue;
                   if (c->session->curw->window == w)
                           c->flags |= CLIENT_BORDERS;
           }
   }
   
   void
 server_status_window(struct window *w)  server_status_window(struct window *w)
 {  {
         struct session  *s;          struct session  *s;

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33