From 432ac912c18c022ca42a05a797a9c42a9d735d89 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 22 Feb 2001 09:03:30 +0000 Subject: [PATCH] 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 --- src/perl/irc/Irc.xs | 8 -------- src/perl/irc/module.h | 1 - src/perl/irc/typemap | 1 - 3 files changed, 10 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 } diff --git a/src/perl/irc/module.h b/src/perl/irc/module.h index 7f35b4a6..aa70eb0a 100644 --- a/src/perl/irc/module.h +++ b/src/perl/irc/module.h @@ -36,5 +36,4 @@ typedef SEND_DCC_REC *Irssi__Irc__Dcc__Send; typedef NETSPLIT_REC *Irssi__Irc__Netsplit; typedef NETSPLIT_SERVER_REC *Irssi__Irc__Netsplitserver; typedef NETSPLIT_CHAN_REC *Irssi__Irc__Netsplitchannel; -typedef AUTOIGNORE_REC *Irssi__Irc__Autoignore; typedef NOTIFYLIST_REC *Irssi__Irc__Notifylist; diff --git a/src/perl/irc/typemap b/src/perl/irc/typemap index 8608e384..c4721b1f 100644 --- a/src/perl/irc/typemap +++ b/src/perl/irc/typemap @@ -13,7 +13,6 @@ Irssi::Irc::Dcc::Send T_DccObj Irssi::Irc::Netsplit T_PlainObj Irssi::Irc::Netsplitserver T_PlainObj Irssi::Irc::Netsplitchannel T_PlainObj -Irssi::Irc::Autoignore T_PlainObj Irssi::Irc::Notifylist T_PlainObj Irssi::Windowitem T_IrssiObj