aboutsummaryrefslogtreecommitdiffstats
path: root/history-search
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-04-01 05:43:04 +0000
committerTom Feist <shabble@metavore.org>2011-04-01 05:43:04 +0000
commit8a8ba2c51eadbc0a7ce0236ba6a04dd081f657e2 (patch)
tree2acdb32ce10869db315e2b045b272def5a1ca60c /history-search
parentsignal_redir: general cleanup, and added attribution block %IRSSI (diff)
downloadirssi-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')
-rw-r--r--history-search/rl_history_search.pl10
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 {