diff options
author | Tom Feist <shabble@metavore.org> | 2011-04-01 05:43:04 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-04-01 05:43:04 +0000 |
commit | 8a8ba2c51eadbc0a7ce0236ba6a04dd081f657e2 (patch) | |
tree | 2acdb32ce10869db315e2b045b272def5a1ca60c /scrolled-reminder | |
parent | signal_redir: general cleanup, and added attribution block %IRSSI (diff) | |
download | irssi-scripts-8a8ba2c51eadbc0a7ce0236ba6a04dd081f657e2.tar.gz irssi-scripts-8a8ba2c51eadbc0a7ce0236ba6a04dd081f657e2.zip |
modify all scripts to use the new script_is_loaded() function, since newer
versions of perl get upset at defined(%hash).
Diffstat (limited to 'scrolled-reminder')
-rw-r--r-- | scrolled-reminder/scrolled_reminder.pl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/scrolled-reminder/scrolled_reminder.pl b/scrolled-reminder/scrolled_reminder.pl index 48da622..21fab26 100644 --- a/scrolled-reminder/scrolled_reminder.pl +++ b/scrolled-reminder/scrolled_reminder.pl @@ -82,13 +82,7 @@ our %IRSSI = # check we have prompt_info loaded. sub script_is_loaded { - my $name = shift; - print "Checking if $name is loaded" if DEBUG; - no strict 'refs'; - my $retval = defined %{ "Irssi::Script::${name}::" }; - use strict 'refs'; - - return $retval; + return exists($Irssi::Script::{shift . '::'}) ; } unless (script_is_loaded('uberprompt')) { |