1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Fix bold on monochrome terminals.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4373 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2006-09-20 23:56:59 +00:00 committed by exg
parent 66ae6d0876
commit 406c70c530

View File

@ -339,7 +339,7 @@ void term_set_color(TERM_WINDOW *window, int col)
/* bold */
if (col & 0x08)
col |= ATTR_BOLD;
else if (col & ATTR_BOLD)
if (col & ATTR_BOLD)
terminfo_set_bold();
/* underline */