diff options
author | Timo Sirainen <cras@irssi.org> | 2000-10-14 01:06:24 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-10-14 01:06:24 +0000 |
commit | f6dbbfae1f2c4108a737090de20b187a7e219824 (patch) | |
tree | f82fa2630f1f95a63626cbd5a592e30f3d237bf9 /src/irc/core/channel-events.c | |
parent | d398247f762e111e82f418af142dd7e70d1d167a (diff) | |
download | irssi-f6dbbfae1f2c4108a737090de20b187a7e219824.zip |
When joining to !channel the join message was printed to active window
instead of the channel's.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@742 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/channel-events.c')
-rw-r--r-- | src/irc/core/channel-events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/channel-events.c b/src/irc/core/channel-events.c index 0fc43c5b..eb8a6b30 100644 --- a/src/irc/core/channel-events.c +++ b/src/irc/core/channel-events.c @@ -278,7 +278,7 @@ void channel_events_init(void) signal_add_first("event 476", (SIGNAL_FUNC) event_cannot_join); /* bad channel mask */ signal_add("event topic", (SIGNAL_FUNC) event_topic); - signal_add("event join", (SIGNAL_FUNC) event_join); + signal_add_first("event join", (SIGNAL_FUNC) event_join); signal_add("event part", (SIGNAL_FUNC) event_part); signal_add("event kick", (SIGNAL_FUNC) event_kick); signal_add("event invite", (SIGNAL_FUNC) event_invite); |