From 35cce9e543a24a70dbd3660002e6f99aea650c65 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 14 Jul 2018 21:49:29 +0100 Subject: [PATCH] trs80: make the model 4 use the new handler --- Kernel/platform-trs80/devtty.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Kernel/platform-trs80/devtty.c b/Kernel/platform-trs80/devtty.c index fecaa8f5..1eeb7c09 100644 --- a/Kernel/platform-trs80/devtty.c +++ b/Kernel/platform-trs80/devtty.c @@ -319,8 +319,7 @@ static void keydecode(void) vt_inproc(inputtty + 1, c); break; case 1: - /* Proper rule needed FIXME */ - if (c <= 0x83) { + if (!input_meta_match(c)) { vt_inproc(inputtty + 1, c); break; } -- 2.34.1