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

Diff for /src/usr.bin/tmux/control-notify.c between version 1.28 and 1.29

version 1.28, 2021/01/20 07:16:54 version 1.29, 2021/03/16 09:14:58
Line 172 
Line 172 
 }  }
   
 void  void
   control_notify_client_detached(struct client *cc)
   {
           struct client   *c;
   
           TAILQ_FOREACH(c, &clients, entry) {
                   if (CONTROL_SHOULD_NOTIFY_CLIENT(c))
                           control_write(c, "%%client-detached %s", cc->name);
           }
   }
   
   void
 control_notify_session_renamed(struct session *s)  control_notify_session_renamed(struct session *s)
 {  {
         struct client   *c;          struct client   *c;

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29