diff options
-rw-r--r-- | selfunload.pl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/selfunload.pl b/selfunload.pl index 20653d7..902a5b0 100644 --- a/selfunload.pl +++ b/selfunload.pl @@ -14,6 +14,9 @@ # #1 0x00000000004a05d5 in perl_script_unload () # (no, I don't have debug symbols in my irssi binary, sorry). +# At some point, the irssi devs fixed it so irssi no longer segfaults. +# irssi-1.4.4 doesn't, but 1.2.3 does. + use warnings; use strict; @@ -22,11 +25,11 @@ use Irssi qw/command command_bind/; our $VERSION = "0.0"; our %IRSSI = ( authors => 'B. Watson', - contact => 'yalhcru@gmail.com or Urchlay on FreeNode ##slackware', + contact => 'urchlay@slackware.uk or Urchlay on Libera ##slackware', name => 'selfunload', - description => 'script that makes irssi segfault' + description => 'script that makes old irssi versions segfault', license => 'WTFPL', - url => 'http://urchlay.naptime.net/repos/misc-scripts/plain/selfunload.pl', + url => 'https://slackware.uk/~urchlay/repos/misc-scripts/plain/termbin', ); sub selfunload { |