[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.29 and 1.30

version 1.29, 2021/03/16 09:14:58 version 1.30, 2022/08/15 09:10:34
Line 234 
Line 234 
                     s->curw->window->id);                      s->curw->window->id);
         }          }
 }  }
   
   void
   control_notify_paste_buffer_changed(const char *name)
   {
           struct client   *c;
   
           TAILQ_FOREACH(c, &clients, entry) {
                   if (!CONTROL_SHOULD_NOTIFY_CLIENT(c))
                           continue;
   
                   control_write(c, "%%paste-changed %s", name);
           }
   }

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