summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2014-08-09 07:33:37 +0000
committernicm <nicm>2014-08-09 07:33:37 +0000
commit1ac96200a7462597b137719b376f40ad0cd85216 (patch)
tree6574ce0438c4171d7120012a8c6e68eb302c6e1f /tmux.h
parentb8b00aad5d3de0015367a6e23e800950ff7fc2df (diff)
Remove support for the continuous reporting "any" mouse mode which never
really worked properly and is rarely used.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index bbf4e9dd..614b7077 100644
--- a/tmux.h
+++ b/tmux.h
@@ -682,13 +682,13 @@ struct mode_key_table {
#define MODE_WRAP 0x10 /* whether lines wrap */
#define MODE_MOUSE_STANDARD 0x20
#define MODE_MOUSE_BUTTON 0x40
-#define MODE_MOUSE_ANY 0x80
+/* 0x80 unused */
#define MODE_MOUSE_UTF8 0x100
#define MODE_MOUSE_SGR 0x200
#define MODE_BRACKETPASTE 0x400
#define MODE_FOCUSON 0x800
-#define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ANY)
+#define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON)
/* A single UTF-8 character. */
struct utf8_data {