1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Allow Irssi::signal_remove to work properly with coderefs

This commit is contained in:
Tom Feist 2016-07-12 12:42:15 +02:00 committed by LemonBoy
parent b8f7eaad40
commit 9559a8ead9

View File

@ -433,8 +433,9 @@ static void perl_signal_remove_list_one(GSList **siglist, PERL_SIGNAL_REC *rec)
} }
#define sv_func_cmp(f1, f2) \ #define sv_func_cmp(f1, f2) \
(f1 == f2 || (SvPOK(f1) && SvPOK(f2) && \ ((SvROK(f1) && SvROK(f2) && SvRV(f1) == SvRV(f2)) || \
g_strcmp0(SvPV_nolen(f1), SvPV_nolen(f2)) == 0)) (SvPOK(f1) && SvPOK(f2) && \
g_strcmp0(SvPV_nolen(f1), SvPV_nolen(f2)) == 0))
static void perl_signal_remove_list(GSList **list, SV *func) static void perl_signal_remove_list(GSList **list, SV *func)
{ {