mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +02:00
I always forget Perl 5.004 doesn't have PL_na .. so, now I've declared for
5.004, and changed all STRLEN n_a code to use PL_na instead. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2238 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d4ee6fd604
commit
617123b5d4
10 changed files with 21 additions and 35 deletions
|
|
@ -160,9 +160,7 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||
SPAGAIN;
|
||||
|
||||
if (SvTRUE(ERRSV)) {
|
||||
STRLEN n_a;
|
||||
|
||||
signal_emit("script error", 2, script, SvPV(ERRSV, n_a));
|
||||
signal_emit("script error", 2, script, SvPV(ERRSV, PL_na));
|
||||
rec = NULL;
|
||||
}
|
||||
|
||||
|
|
@ -335,14 +333,13 @@ static void perl_signal_remove_list_one(GSList **siglist, PERL_SIGNAL_REC *rec)
|
|||
static void perl_signal_remove_list(GSList **list, SV *func)
|
||||
{
|
||||
GSList *tmp;
|
||||
STRLEN n_a;
|
||||
|
||||
g_return_if_fail(list != NULL);
|
||||
|
||||
for (tmp = *list; tmp != NULL; tmp = tmp->next) {
|
||||
PERL_SIGNAL_REC *rec = tmp->data;
|
||||
|
||||
if (sv_func_cmp(rec->func, func, n_a)) {
|
||||
if (sv_func_cmp(rec->func, func, PL_na)) {
|
||||
perl_signal_remove_list_one(list, rec);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue