=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/alerts.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- src/usr.bin/tmux/alerts.c 2017/07/26 16:16:25 1.22 +++ src/usr.bin/tmux/alerts.c 2017/08/16 11:46:08 1.23 @@ -1,4 +1,4 @@ -/* $OpenBSD: alerts.c,v 1.22 2017/07/26 16:16:25 nicm Exp $ */ +/* $OpenBSD: alerts.c,v 1.23 2017/08/16 11:46:08 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -267,11 +267,11 @@ int flag; /* - * We have found an alert (bell, activity or silence), so we need - * to notify the user. For each client attached to this session, + * We have found an alert (bell, activity or silence), so we need to + * pass it on to the user. For each client attached to this session, * decide whether a bell (or visual message) is needed. * - * {bell,activity,silence}-action determines when we notify: none means + * {bell,activity,silence}-action determines when we alert: none means * nothing happens, current means we only do something for the current * window and other means only for windows other than the current. * @@ -280,17 +280,17 @@ * mean both a bell and visual message is sent. */ - if (action == BELL_NONE) + if (action == ALERT_NONE) return; TAILQ_FOREACH(c, &clients, entry) { if (c->session != s || c->flags & CLIENT_CONTROL) continue; flag = 0; - if (action == BELL_ANY) + if (action == ALERT_ANY) flag = 1; - else if (action == BELL_CURRENT) + else if (action == ALERT_CURRENT) flag = (c->session->curw->window == w); - else if (action == BELL_OTHER) + else if (action == ALERT_OTHER) flag = (c->session->curw->window != w); if (!flag) continue;