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

Diff for /src/usr.bin/tmux/server-client.c between version 1.178 and 1.179

version 1.178, 2015/12/12 18:32:24 version 1.179, 2015/12/15 13:43:07
Line 283 
Line 283 
         if (s == NULL)          if (s == NULL)
                 return;                  return;
   
         hooks_run(c->session->hooks, "client-detached", c);          hooks_run(c->session->hooks, c, "client-detached");
         proc_send_s(c->peer, msgtype, s->name);          proc_send_s(c->peer, msgtype, s->name);
 }  }
   
Line 1027 
Line 1027 
                         server_redraw_client(c);                          server_redraw_client(c);
                 }                  }
                 if (c->session != NULL)                  if (c->session != NULL)
                         hooks_run(c->session->hooks, "client-resized", c);                          hooks_run(c->session->hooks, c, "client-resized");
                 break;                  break;
         case MSG_EXITING:          case MSG_EXITING:
                 if (datalen != 0)                  if (datalen != 0)

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.179