[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.98 and 1.99

version 1.98, 2016/01/19 15:59:12 version 1.99, 2016/06/16 10:55:47
Line 441 
Line 441 
 }  }
   
 void  void
 server_clear_identify(struct client *c)  server_clear_identify(struct client *c, struct window_pane *wp)
 {  {
         if (c->flags & CLIENT_IDENTIFY) {          if (~c->flags & CLIENT_IDENTIFY)
                 c->flags &= ~CLIENT_IDENTIFY;                  return;
                 c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);          c->flags &= ~CLIENT_IDENTIFY;
                 server_redraw_client(c);  
         }          if (c->identify_callback != NULL)
                   c->identify_callback(c, wp);
   
           c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
           server_redraw_client(c);
 }  }
   
 void  void
 server_callback_identify(__unused int fd, __unused short events, void *data)  server_callback_identify(__unused int fd, __unused short events, void *data)
 {  {
         struct client   *c = data;          server_clear_identify(data, NULL);
   
         server_clear_identify(c);  
 }  }
   
 /* Set stdin callback. */  /* Set stdin callback. */

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.99