ports/sysutils/tmux/files/patch_server-window.c
Wen Heping 78f352b18e - Force using kqueue since FreeBSD 6.x is now EOL [1]
- Fix urgent signal for window manager [2]
- Remove MD5 [2]

PR:		ports/152765 [1]
		ports/153348 [2]
Submitted by:	Mark Felder <feld@feld.me> [1]
		Renato Botelho <garga@FreeBSD.org> [2]
2010-12-22 01:38:53 +00:00

13 lines
298 B
C

@@ -109,10 +109,8 @@
if (!(w->flags & WINDOW_BELL) || wl->flags & WINLINK_BELL)
return (0);
- if (s->curw == wl)
- return (0);
-
- wl->flags |= WINLINK_BELL;
+ if (s->curw != wl)
+ wl->flags |= WINLINK_BELL;
action = options_get_number(&s->options, "bell-action");
switch (action) {