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 /history-search/rl_history_search.pl | |
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 'history-search/rl_history_search.pl')
-rw-r--r-- | history-search/rl_history_search.pl | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/history-search/rl_history_search.pl b/history-search/rl_history_search.pl index ca45fe5..642b99c 100644 --- a/history-search/rl_history_search.pl +++ b/history-search/rl_history_search.pl @@ -81,13 +81,7 @@ sub DEBUG () { $DEBUG_ENABLED } # check we have uberprompt 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 . '::'}) ; } if (not script_is_loaded('uberprompt')) { @@ -103,7 +97,7 @@ if (not script_is_loaded('uberprompt')) { } history_init(); } else { - history_init(); + history_init(); } sub load_uberprompt_failed { |