diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-28 09:18:04 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-28 09:18:04 +0100 |
commit | e2d01795d2501f6097bb13129995a6d0a86af419 (patch) | |
tree | 65113b35460fbea1744bbeb8a7df42354f7ad266 /input-keys.c | |
parent | 589d3eb48fcb30163c9ac3f4b8d5e802e3f45118 (diff) | |
download | rtmux-e2d01795d2501f6097bb13129995a6d0a86af419.tar.gz rtmux-e2d01795d2501f6097bb13129995a6d0a86af419.tar.bz2 rtmux-e2d01795d2501f6097bb13129995a6d0a86af419.zip |
Move "special" keys into the Unicode PUA rather than making them high a top bit
set, some compilers cannot handle enums that are larger than int. GitHub issue
2673.
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 a3252855..ffd2201c 100644 --- a/input-keys.c +++ b/input-keys.c @@ -476,7 +476,7 @@ input_key(struct screen *s, struct bufferevent *bev, key_code key) input_key_write(__func__, bev, &ud.data[0], 1); return (0); } - if (justkey > 0x7f && justkey < KEYC_BASE) { + if (KEYC_IS_UNICODE(justkey)) { if (key & KEYC_META) input_key_write(__func__, bev, "\033", 1); utf8_to_data(justkey, &ud); |