From: Alan Cox Date: Fri, 11 May 2018 14:47:24 +0000 (+0100) Subject: vt: change the new cursor on/off codes X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c2558a7bbf5d55d79f520bd06ee90cb911ceeec8;p=FUZIX.git 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. --- 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;