diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-28 11:36:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-28 11:36:41 +0000 |
commit | 933d37c38c5bc1ee8fdd4d1cff4fcbd04ea471d5 (patch) | |
tree | cef7864c181b87245f6c75f30f2457332cca7611 /usr.bin/tmux/tmux.h | |
parent | 477420b57a3a5fb73f583f32fa0d035899ef838d (diff) |
Apply the xterm key flag when needed for send-keys, fixes problem
reported by Franky Spamschleuder.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index bdff96144c3..848b312c330 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.787 2017/06/23 15:36:52 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.788 2017/06/28 11:36:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -94,8 +94,8 @@ struct tmuxproc; /* Key modifier bits. */ #define KEYC_ESCAPE 0x200000000000ULL -#define KEYC_CTRL 0x400000000000ULL -#define KEYC_SHIFT 0x800000000000ULL +#define KEYC_CTRL 0x400000000000ULL +#define KEYC_SHIFT 0x800000000000ULL #define KEYC_XTERM 0x1000000000000ULL /* Mask to obtain key w/o modifiers. */ |