From: Alan Cox Date: Sun, 15 Jul 2018 22:02:37 +0000 (+0100) Subject: trs80: fix dumb bug when I added the input patch X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a02a080756f49426f0f4d5512e408b4bf82355e7;p=FUZIX.git trs80: fix dumb bug when I added the input patch Reported by Jenz Guenther --- diff --git a/Kernel/platform-trs80/devtty.c b/Kernel/platform-trs80/devtty.c index 1eeb7c09..249ea2b8 100644 --- a/Kernel/platform-trs80/devtty.c +++ b/Kernel/platform-trs80/devtty.c @@ -319,7 +319,7 @@ static void keydecode(void) vt_inproc(inputtty + 1, c); break; case 1: - if (!input_meta_match(c)) { + if (!input_match_meta(c)) { vt_inproc(inputtty + 1, c); break; }