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

Diff for /src/usr.bin/tmux/notify.c between version 1.27 and 1.28

version 1.27, 2019/04/26 11:38:51 version 1.28, 2019/05/07 10:25:15
Line 199 
Line 199 
 }  }
   
 void  void
 notify_input(struct window_pane *wp, struct evbuffer *input)  notify_input(struct window_pane *wp, const u_char *buf, size_t len)
 {  {
         struct client   *c;          struct client   *c;
   
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {
                 if (c->flags & CLIENT_CONTROL)                  if (c->flags & CLIENT_CONTROL)
                         control_notify_input(c, wp, input);                          control_notify_input(c, wp, buf, len);
         }          }
 }  }
   

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