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:
Timo Sirainen 2001-01-28 07:22:22 +00:00 committed by cras
commit 56abbcd2e3
8 changed files with 206 additions and 164 deletions

View file

@ -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();