=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.247 retrieving revision 1.248 diff -c -r1.247 -r1.248 *** src/usr.bin/tmux/tmux.h 2010/11/22 21:13:13 1.247 --- src/usr.bin/tmux/tmux.h 2010/12/06 22:51:02 1.248 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.247 2010/11/22 21:13:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.248 2010/12/06 22:51:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 830,835 **** --- 830,836 ---- struct window { char *name; struct event name_timer; + struct timeval silence_timer; struct window_pane *active; struct window_pane *last; *************** *** 845,850 **** --- 846,852 ---- #define WINDOW_BELL 0x1 #define WINDOW_ACTIVITY 0x2 #define WINDOW_REDRAW 0x4 + #define WINDOW_SILENCE 0x8 struct options options; *************** *** 865,871 **** #define WINLINK_BELL 0x1 #define WINLINK_ACTIVITY 0x2 #define WINLINK_CONTENT 0x4 ! #define WINLINK_ALERTFLAGS (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_CONTENT) RB_ENTRY(winlink) entry; TAILQ_ENTRY(winlink) sentry; --- 867,875 ---- #define WINLINK_BELL 0x1 #define WINLINK_ACTIVITY 0x2 #define WINLINK_CONTENT 0x4 ! #define WINLINK_SILENCE 0x8 ! #define WINLINK_ALERTFLAGS \ ! (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_CONTENT|WINLINK_SILENCE) RB_ENTRY(winlink) entry; TAILQ_ENTRY(winlink) sentry;