From 309ddb5cad1fe87ee07536a50b3abe648e7c3335 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 8 Oct 2005 09:09:50 +0000 Subject: [PATCH] Failed to call set_erase_char() after processing SCO colour sequences. [originally from svn r6379] --- terminal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminal.c b/terminal.c index 928f6ed8..ad9acc70 100644 --- a/terminal.c +++ b/terminal.c @@ -3899,6 +3899,7 @@ static void term_out(Terminal *term) term->curr_attr |= colour; term->default_attr &= ~ATTR_FGMASK; term->default_attr |= colour; + set_erase_char(term); } break; case ANSI('G', '='): /* set normal background */ @@ -3912,6 +3913,7 @@ static void term_out(Terminal *term) term->curr_attr |= colour; term->default_attr &= ~ATTR_BGMASK; term->default_attr |= colour; + set_erase_char(term); } break; case ANSI('L', '='):