From 406c70c5304f09664b2f771feb6bf2084123cb27 Mon Sep 17 00:00:00 2001 From: Emanuele Giaquinta Date: Wed, 20 Sep 2006 23:56:59 +0000 Subject: [PATCH] Fix bold on monochrome terminals. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4373 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/term-terminfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-text/term-terminfo.c b/src/fe-text/term-terminfo.c index 5552d9cb..242eace9 100644 --- a/src/fe-text/term-terminfo.c +++ b/src/fe-text/term-terminfo.c @@ -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 */