]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Failed to call set_erase_char() after processing SCO colour sequences.
authorSimon Tatham <anakin@pobox.com>
Sat, 8 Oct 2005 09:09:50 +0000 (09:09 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 8 Oct 2005 09:09:50 +0000 (09:09 +0000)
[originally from svn r6379]

terminal.c

index 928f6ed8379ed985dbc775ab60480be822e4e046..ad9acc70679c50fcb1312fcf55e432c59a356a5c 100644 (file)
@@ -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', '='):