From c2558a7bbf5d55d79f520bd06ee90cb911ceeec8 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 11 May 2018 15:47:24 +0100 Subject: [PATCH] vt: change the new cursor on/off codes We use e and f, as like many other other extended codes we use we try and follow the extended vt52 convention of the Atari ST. --- Kernel/vt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/vt.c b/Kernel/vt.c index cbfa7ca9..45404366 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -187,11 +187,11 @@ static int escout(unsigned char c) clear_across(cursory, cursorx, VT_RIGHT - cursorx + 1); return 0; } - if (c == '_') { + if (c == 'e') { cursorhide = 0; return 0; } - if (c == ' ') { + if (c == 'f') { cursorhide = 1; cursor_disable(); return 0; -- 2.34.1