1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

And the same for signal_continue

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3312 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Wouter Coekaerts 2004-10-06 20:48:25 +00:00 committed by coekie
parent 64c6af7865
commit c08f9f3867

View File

@ -96,6 +96,8 @@ CODE:
p[n] = irssi_ref_object(ST(n));
else if (SvROK(ST(n)))
p[n] = (void *) SvIV((SV*)SvRV(ST(n)));
else if (SvIOK(ST(n)))
p[n] = (void *) SvIV(ST(n));
else
p[n] = NULL;
}