summaryrefslogtreecommitdiff
path: root/src/perl/irc/Irc.xs
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-02-22 09:03:30 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-02-22 09:03:30 +0000
commit432ac912c18c022ca42a05a797a9c42a9d735d89 (patch)
tree1cbd45100cbcdfc5c12806b2921668db885d8fb3 /src/perl/irc/Irc.xs
parent3c2347b1faa6d6356027f9feb8e056eddb4cecd6 (diff)
downloadirssi-432ac912c18c022ca42a05a797a9c42a9d735d89.zip
Removed AUTOIGNORE_REC since it doesn't exist anyremo
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1284 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/irc/Irc.xs')
-rw-r--r--src/perl/irc/Irc.xs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/perl/irc/Irc.xs b/src/perl/irc/Irc.xs
index 37303ebb..328e9c56 100644
--- a/src/perl/irc/Irc.xs
+++ b/src/perl/irc/Irc.xs
@@ -108,13 +108,6 @@ static void perl_netsplit_channel_fill_hash(HV *hv, NETSPLIT_CHAN_REC *rec)
hv_store(hv, "nick", 4, irssi_bless(&rec->nick), 0);
}
-static void perl_autoignore_fill_hash(HV *hv, AUTOIGNORE_REC *ai)
-{
- hv_store(hv, "nick", 4, new_pv(ai->nick), 0);
- hv_store(hv, "timeleft", 8, newSViv(ai->timeleft), 0);
- hv_store(hv, "level", 5, newSViv(ai->level), 0);
-}
-
static void perl_notifylist_fill_hash(HV *hv, NOTIFYLIST_REC *notify)
{
AV *av;
@@ -137,7 +130,6 @@ static PLAIN_OBJECT_INIT_REC irc_plains[] = {
{ "Irssi::Irc::Netsplit", (PERL_OBJECT_FUNC) perl_netsplit_fill_hash },
{ "Irssi::Irc::Netsplitserver", (PERL_OBJECT_FUNC) perl_netsplit_server_fill_hash },
{ "Irssi::Irc::Netsplitchannel", (PERL_OBJECT_FUNC) perl_netsplit_channel_fill_hash },
- { "Irssi::Irc::Autoignore", (PERL_OBJECT_FUNC) perl_autoignore_fill_hash },
{ "Irssi::Irc::Notifylist", (PERL_OBJECT_FUNC) perl_notifylist_fill_hash },
{ NULL, NULL }