1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-04 03:34:18 -04:00

/HILIGHT -actcolor didn't work with -nick (which was default)

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2100 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-19 21:10:39 +00:00 committed by cras
parent e98a83b538
commit dc11f23afd

View File

@ -294,18 +294,18 @@ static void sig_print_text(TEXT_DEST_REC *dest, const char *text,
if (hilight == NULL)
return;
if (hilight->nick && (dest->level & (MSGLEVEL_PUBLIC|MSGLEVEL_ACTIONS)) == MSGLEVEL_PUBLIC)
return; /* fe-messages.c should have taken care of this */
/* update the level / hilight info */
old_level = dest->level;
hilight_update_text_dest(dest, hilight);
if (hilight->nick && (dest->level & (MSGLEVEL_PUBLIC|MSGLEVEL_ACTIONS)) == MSGLEVEL_PUBLIC)
return; /* fe-messages.c should have taken care of this */
if (old_level & MSGLEVEL_HILIGHT) {
/* nick is highlighted, just set priority */
return;
}
color = hilight_get_color(hilight);
hilight_len = hilight_end-hilight_start;