From a02a080756f49426f0f4d5512e408b4bf82355e7 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 15 Jul 2018 23:02:37 +0100 Subject: [PATCH] trs80: fix dumb bug when I added the input patch Reported by Jenz Guenther --- Kernel/platform-trs80/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1