summaryrefslogtreecommitdiff
path: root/src
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
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')
-rw-r--r--src/perl/irc/Irc.xs8
-rw-r--r--src/perl/irc/module.h1
-rw-r--r--src/perl/irc/typemap1
3 files changed, 0 insertions, 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