mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
Ignoring updates. Added support for nickmatch cache. One ignore can't
have both except and normal levels. Nick ignoring checks now with both old and new nicks. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1155 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
6c32ffdc4f
commit
56abbcd2e3
8 changed files with 206 additions and 164 deletions
|
|
@ -58,6 +58,7 @@ void core_init(void)
|
|||
signals_init();
|
||||
settings_init();
|
||||
commands_init();
|
||||
nickmatch_cache_init();
|
||||
|
||||
chat_protocols_init();
|
||||
chatnets_init();
|
||||
|
|
@ -70,7 +71,6 @@ void core_init(void)
|
|||
channels_init();
|
||||
queries_init();
|
||||
nicklist_init();
|
||||
nickmatch_cache_init();
|
||||
|
||||
chat_commands_init();
|
||||
settings_check();
|
||||
|
|
@ -80,7 +80,6 @@ void core_deinit(void)
|
|||
{
|
||||
chat_commands_deinit();
|
||||
|
||||
nickmatch_cache_deinit();
|
||||
nicklist_deinit();
|
||||
queries_deinit();
|
||||
channels_deinit();
|
||||
|
|
@ -93,6 +92,7 @@ void core_deinit(void)
|
|||
chatnets_deinit();
|
||||
chat_protocols_deinit();
|
||||
|
||||
nickmatch_cache_deinit();
|
||||
commands_deinit();
|
||||
settings_deinit();
|
||||
signals_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue