Guest User

Untitled

a guest
Jul 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. --- tmux-1.3-orig/server-window.c 2010-06-23 01:26:18.000000000 +0200
  2. +++ tmux-1.3/server-window.c 2010-08-06 17:23:31.000000000 +0200
  3. @@ -112,10 +112,8 @@
  4.  
  5. if (!(w->flags & WINDOW_BELL) || wl->flags & WINLINK_BELL)
  6. return (0);
  7. - if (s->curw == wl)
  8. - return (0);
  9. -
  10. - wl->flags |= WINLINK_BELL;
  11. + if (s->curw != wl)
  12. + wl->flags |= WINLINK_BELL;
  13.  
  14. action = options_get_number(&s->options, "bell-action");
  15. switch (action) {
Add Comment
Please, Sign In to add comment