From a3a01a6dd2e03d5c6f9f61dbca665de582c688ff Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Sun, 1 Nov 2015 10:24:37 -0500 Subject: [PATCH] vt.c: add vtattr_notify() platform call. --- Kernel/vt.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Kernel/vt.c b/Kernel/vt.c index 0e13506c..48390ac8 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -243,17 +243,20 @@ void vtoutput(unsigned char *p, unsigned int len) if (ncursorx >= 0 && ncursorx <= VT_RIGHT) cursorx = ncursorx; vtmode = 0; - } else if (vtmode == 4) { + } else if (vtmode == 4 ){ vtattr = c; vtmode = 0; + vtattr_notify(); continue; } else if (vtmode == 5) { vtink = c; vtmode = 0; + vtattr_notify(); continue; } else if (vtmode == 6) { vtpaper = c; vtmode = 0; + vtattr_notify(); continue; } } -- 2.34.1