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

Send notify out messages with HILIGHT level too.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1411 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-20 02:00:17 +00:00 committed by cras
parent 93141c3a86
commit 8a9fcb53fc

View File

@ -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 {