=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/cmd-choose-window.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/tmux/Attic/cmd-choose-window.c 2010/04/21 21:41:21 1.13 --- src/usr.bin/tmux/Attic/cmd-choose-window.c 2010/06/21 01:27:46 1.14 *************** *** 1,4 **** ! /* $OpenBSD: cmd-choose-window.c,v 1.13 2010/04/21 21:41:21 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-choose-window.c,v 1.14 2010/06/21 01:27:46 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 81,91 **** idx++; flag = ' '; ! if (session_alert_has(s, wm, WINDOW_ACTIVITY)) flag = '#'; ! else if (session_alert_has(s, wm, WINDOW_BELL)) flag = '!'; ! else if (session_alert_has(s, wm, WINDOW_CONTENT)) flag = '+'; else if (wm == s->curw) flag = '*'; --- 81,91 ---- idx++; flag = ' '; ! if (wm->flags & WINLINK_ACTIVITY) flag = '#'; ! else if (wm->flags & WINLINK_BELL) flag = '!'; ! else if (wm->flags & WINLINK_CONTENT) flag = '+'; else if (wm == s->curw) flag = '*';