mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
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
This commit is contained in:
parent
3c2347b1fa
commit
432ac912c1
@ -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 }
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user