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:
parent
1410b3bc4c
commit
4dff614333
@ -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")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user