diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-03-01 18:01:10 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-03-01 18:01:10 +0000 |
commit | bf14bf6259a03d83502e281a34d88296faaa02dc (patch) | |
tree | 5fe3dbd950727283c9a0d4e1208f36629c2cc2ff /input-keys.c | |
parent | cd9a81e24239d9373723c6ea66698be2cbbc8fb1 (diff) | |
parent | f39a71aaade384d47917349f9d0b8dd709e8262e (diff) | |
download | rtmux-bf14bf6259a03d83502e281a34d88296faaa02dc.tar.gz rtmux-bf14bf6259a03d83502e281a34d88296faaa02dc.tar.bz2 rtmux-bf14bf6259a03d83502e281a34d88296faaa02dc.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'input-keys.c')
-rw-r--r-- | input-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input-keys.c b/input-keys.c index f478cb95..feb62f6d 100644 --- a/input-keys.c +++ b/input-keys.c @@ -519,7 +519,7 @@ input_key(struct screen *s, struct bufferevent *bev, key_code key) } outkey = (key & KEYC_MASK_KEY); modifiers = (key & KEYC_MASK_MODIFIERS); - if (outkey < ' ') { + if (outkey < 32 && outkey != 9 && outkey != 13 && outkey != 27) { outkey = 64 + outkey; modifiers |= KEYC_CTRL; } |