1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

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
parent 1410b3bc4c
commit 4dff614333

View File

@ -8,7 +8,7 @@ ignores()
PREINIT: PREINIT:
GSList *tmp; GSList *tmp;
PPCODE: 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"))); XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Ignore")));
} }