From: Alan Cox Date: Fri, 13 Feb 2015 21:11:31 +0000 (+0000) Subject: devtty: fix bogus space X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ddcb681265a49eb7cadc1cdf9a1ce05cc316e0c7;p=FUZIX.git devtty: fix bogus space --- diff --git a/Kernel/platform-zx128/devtty.c b/Kernel/platform-zx128/devtty.c index afb7ee42..0f02992a 100644 --- a/Kernel/platform-zx128/devtty.c +++ b/Kernel/platform-zx128/devtty.c @@ -160,7 +160,7 @@ static void keydecode(void) else if (c == ' ') c = KEY_STOP; /* ^C map for BREAK */ else if (c >= '5' && c <= '8') - c = cursor[c - '5']; + c = cursor[c - '5']; } }