From b6805ce84d8300c85364c0d6a59c3b8dc80e8b79 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 8 Sep 2013 19:53:08 +0800 Subject: [PATCH 1/1] Kernel/VTerm - (minor) Possible escape sequence to reset terminal state --- KernelLand/Kernel/drv/vterm_vt100.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/KernelLand/Kernel/drv/vterm_vt100.c b/KernelLand/Kernel/drv/vterm_vt100.c index 8ebd9bfd..83c7a200 100644 --- a/KernelLand/Kernel/drv/vterm_vt100.c +++ b/KernelLand/Kernel/drv/vterm_vt100.c @@ -139,7 +139,10 @@ void VT_int_ParseEscape_StandardLarge(tVTerm *Term, char CmdChar, int argc, int Term->WritePos = args[0] + args[1]*Term->TextWidth; //Log_Debug("VTerm", "args = {%i, %i}", args[0], args[1]); break; - +// // Reset formatting? +// case 'R': +// Term->CurColour = DEFAULT_COLOUR; +// break; // Scroll up `n` lines case 'S': tmp = -1; -- 2.20.1