]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Blinking text was broken on pterm. This should fix it.
authorSimon Tatham <anakin@pobox.com>
Mon, 27 Jan 2003 15:44:48 +0000 (15:44 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 27 Jan 2003 15:44:48 +0000 (15:44 +0000)
[originally from svn r2732]

terminal.c

index 93879d60e8db8a51f3885920632b76853cb674c5..a807339cb617cd27e852271fbb81b2b748ab46b5 100644 (file)
@@ -3175,9 +3175,7 @@ static void do_paint(Terminal *term, Context ctx, int may_optimise)
            /* 'Real' blinking ? */
            if (term->blink_is_real && (tattr & ATTR_BLINK)) {
                if (term->has_focus && term->tblinker) {
-                   tchar = ' ';
-                   tattr &= ~CSET_MASK;
-                   tattr |= ATTR_ACP;
+                   tchar = term->ucsdata->unitab_line[(unsigned char)' '];
                }
                tattr &= ~ATTR_BLINK;
            }