aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2014-04-17 07:36:45 +0000
committernicm <nicm>2014-04-17 07:36:45 +0000
commit992ef70fb696d648b3ec6ed97642fd79a8392baf (patch)
treeb37b31dd9241614b8cb558f614163e69b3403f90 /tmux.h
parent5acee1c04ed38afd6a32da4a66e6855ccdc52af3 (diff)
downloadrtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.tar.gz
rtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.tar.bz2
rtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.zip
Remove the monitor-content option and associated bits and bobs. It's
never worked very well. If there is a big demand for it to return, will consider better ways to do it.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index 61fa4a39..8964ae00 100644
--- a/tmux.h
+++ b/tmux.h
@@ -990,10 +990,8 @@ struct winlink {
int flags;
#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)
+#define WINLINK_SILENCE 0x4
+#define WINLINK_ALERTFLAGS (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_SILENCE)
RB_ENTRY(winlink) entry;
TAILQ_ENTRY(winlink) sentry;