summaryrefslogtreecommitdiffstats
path: root/input-keys.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2021-04-28 09:18:04 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2021-06-10 09:22:07 +0100
commit059580e0f72ebeb0538d0ef54808dae277388bf9 (patch)
tree9af3abc5561700f9368670147383bad763768cdd /input-keys.c
parentcb2943faab2053719b13306f95ed58a2dae64e81 (diff)
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.c2
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);