diff options
-rw-r--r-- | console/ChangeLog | 5 | ||||
-rw-r--r-- | console/display.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/console/ChangeLog b/console/ChangeLog index 266a5a80..3522ff99 100644 --- a/console/ChangeLog +++ b/console/ChangeLog @@ -1,3 +1,8 @@ +2002-08-28 Marcus Brinkmann <marcus@gnu.org> + + * display.c (display_output_one): Also set USER->cursor.status to + normal for ECMA-48 <RIS> (hard reset). + 2002-08-23 Marcus Brinkmann <marcus@gnu.org> * Makefile (DIST_FILES): New variable. diff --git a/console/display.c b/console/display.c index 9af13f77..bcdbac1b 100644 --- a/console/display.c +++ b/console/display.c @@ -1518,6 +1518,7 @@ display_output_one (display_t display, wchar_t chr) display->attr.current.bgcol = display->attr.bgcol_def; display->attr.current.fgcol = display->attr.fgcol_def; display->attr.altchar = 0; + user->cursor.status = CONS_CURSOR_NORMAL; /* Fall through. */ case L'c': /* Clear screen and home cursor: <clear>. */ |