Irssi::ignores() wasn't working, it looked at the server list..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2254 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-12-15 20:37:50 +00:00 committed by cras
commit 4dff614333

View file

@ -8,7 +8,7 @@ ignores()
PREINIT:
GSList *tmp;
PPCODE:
for (tmp = servers; tmp != NULL; tmp = tmp->next) {
for (tmp = ignores; tmp != NULL; tmp = tmp->next) {
XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Ignore")));
}