diff options
author | Timo Sirainen <cras@irssi.org> | 2001-03-20 02:00:17 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-03-20 02:00:17 +0000 |
commit | 8a9fcb53fc4154787cbdaaf7c905ea6ab5c965cd (patch) | |
tree | dee3029236d1dd344fe6098d42127f43e1c8ef20 /src | |
parent | 93141c3a869ba8e32a4aab9eb627e78d91e57e3a (diff) | |
download | irssi-8a9fcb53fc4154787cbdaaf7c905ea6ab5c965cd.zip |
Send notify out messages with HILIGHT level too.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1411 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-common/irc/notifylist/fe-notifylist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/irc/notifylist/fe-notifylist.c b/src/fe-common/irc/notifylist/fe-notifylist.c index 7ccfa98e..dd4cbd2f 100644 --- a/src/fe-common/irc/notifylist/fe-notifylist.c +++ b/src/fe-common/irc/notifylist/fe-notifylist.c @@ -197,7 +197,7 @@ static void notifylist_left(IRC_SERVER_REC *server, const char *nick, { g_return_if_fail(nick != NULL); - printformat(server, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_NOTIFY_PART, + printformat(server, NULL, MSGLEVEL_CLIENTNOTICE | MSGLEVEL_HILIGHT, IRCTXT_NOTIFY_PART, nick, username, host, realname, server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet); } @@ -209,7 +209,7 @@ static void notifylist_away(IRC_SERVER_REC *server, const char *nick, g_return_if_fail(nick != NULL); if (awaymsg != NULL) { - printformat(server, NULL, MSGLEVEL_CLIENTNOTICE, + printformat(server, NULL, MSGLEVEL_CLIENTNOTICE | MSGLEVEL_HILIGHT, IRCTXT_NOTIFY_AWAY, nick, username, host, realname, awaymsg, server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet); } else { |