diff options
author | 2014-08-09 07:33:37 +0000 | |
---|---|---|
committer | 2014-08-09 07:33:37 +0000 | |
commit | ad6b71582bf465152d87a0c0b13e2f4b0fff33bb (patch) | |
tree | 634124fabcdff7b18c50d95ef4d0a54fcf56f6cf /usr.bin/tmux/input.c | |
parent | Backport from 2.17: mark the _GLOBAL_OFFSET_TABLE_, _DYNAMIC, and (diff) | |
download | wireguard-openbsd-ad6b71582bf465152d87a0c0b13e2f4b0fff33bb.tar.xz wireguard-openbsd-ad6b71582bf465152d87a0c0b13e2f4b0fff33bb.zip |
Remove support for the continuous reporting "any" mouse mode which never
really worked properly and is rarely used.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 8c55d89abc7..5970f98df10 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.69 2014/06/06 13:21:41 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.70 2014/08/09 07:33:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1374,7 +1374,6 @@ input_csi_dispatch_rm_private(struct input_ctx *ictx) case 1000: case 1001: case 1002: - case 1003: screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES); break; case 1004: @@ -1451,10 +1450,6 @@ input_csi_dispatch_sm_private(struct input_ctx *ictx) screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES); screen_write_mode_set(&ictx->ctx, MODE_MOUSE_BUTTON); break; - case 1003: - screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES); - screen_write_mode_set(&ictx->ctx, MODE_MOUSE_ANY); - break; case 1004: if (ictx->ctx.s->mode & MODE_FOCUSON) break; |