%F = blinking on/off. several fixes to make blinking work better. some

hilight fixes.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1403 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-17 02:32:32 +00:00 committed by cras
commit d9008ae249
7 changed files with 20 additions and 14 deletions

View file

@ -307,7 +307,7 @@ static void get_colors(int flags, int *fg, int *bg)
*fg |= 8;
}
if (flags & PRINTFLAG_UNDERLINE) *fg |= ATTR_UNDERLINE;
if (flags & PRINTFLAG_BLINK) *bg |= 0x80;
if (flags & PRINTFLAG_BLINK) *bg |= 0x08;
}
static void linebuf_add(GUI_WINDOW_REC *gui, const char *str, int len)