[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.22 and 1.23

version 1.22, 2018/11/19 13:35:40 version 1.23, 2019/05/07 10:25:15
Line 28 
Line 28 
   
 void  void
 control_notify_input(struct client *c, struct window_pane *wp,  control_notify_input(struct client *c, struct window_pane *wp,
     struct evbuffer *input)      const u_char *buf, size_t len)
 {  {
         u_char          *buf;  
         size_t           len;  
         struct evbuffer *message;          struct evbuffer *message;
         u_int            i;          u_int            i;
   
         if (c->session == NULL)          if (c->session == NULL)
             return;              return;
   
         buf = EVBUFFER_DATA(input);  
         len = EVBUFFER_LENGTH(input);  
   
         /*          /*
          * Only write input if the window pane is linked to a window belonging           * Only write input if the window pane is linked to a window belonging

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23