From: Alan Cox Date: Sat, 14 Jul 2018 20:49:29 +0000 (+0100) Subject: trs80: make the model 4 use the new handler X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=35cce9e543a24a70dbd3660002e6f99aea650c65;p=FUZIX.git trs80: make the model 4 use the new handler --- 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; }