diff options
| author | Tom Feist <shabble@metavore.org> | 2010-11-17 09:58:28 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2010-11-17 09:58:28 +0000 | 
| commit | 3072f9c7082c982c724bf245a618021b4e597a68 (patch) | |
| tree | 9b9551b7ac59a3471cb578d86238480bb032a95f | |
| parent | Merge remote branch 'origin/dev' (diff) | |
| download | irssi-scripts-3072f9c7082c982c724bf245a618021b4e597a68.tar.gz irssi-scripts-3072f9c7082c982c724bf245a618021b4e597a68.zip | |
bugfix: stop rl_history_search dumping core by spelling 'signal_remove' properly
| -rw-r--r-- | history-search/rl_history_search.pl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/history-search/rl_history_search.pl b/history-search/rl_history_search.pl index 5282844..fcdde8b 100644 --- a/history-search/rl_history_search.pl +++ b/history-search/rl_history_search.pl @@ -102,7 +102,7 @@ unless (script_is_loaded('uberprompt')) {  }  sub load_uberprompt_failed { -    Irssi::sigal_remove('script error', \&load_prompt_failed); +    Irssi::signal_remove('script error', \&load_prompt_failed);      print "Script could not be loaded. Script cannot continue. "        . "Check you have uberprompt.pl installed in your path and "          .  "try again."; | 
