aboutsummaryrefslogtreecommitdiffstats
path: root/prompt_info
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-07-24 18:13:05 +0000
committerTom Feist <shabble@metavore.org>2011-07-24 18:13:05 +0000
commit87416ffba178e8cccaa62e4437061edccb739377 (patch)
tree78358e401fa31dd4b432fd9cf2e80e3a9f1f93b5 /prompt_info
parentfixes bug in notifyquit uberprompt autoload (diff)
downloadirssi-scripts-87416ffba178e8cccaa62e4437061edccb739377.tar.gz
irssi-scripts-87416ffba178e8cccaa62e4437061edccb739377.zip
fixed incorrect signal removal (leading to irssi-crashing loop) in documentation for uberprompt
Diffstat (limited to 'prompt_info')
-rw-r--r--prompt_info/README.pod2
-rw-r--r--prompt_info/uberprompt.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/prompt_info/README.pod b/prompt_info/README.pod
index d8e3b3e..70dd0b5 100644
--- a/prompt_info/README.pod
+++ b/prompt_info/README.pod
@@ -211,7 +211,7 @@ I<---- start of snippet ---->
}
sub load_uberprompt_failed {
- Irssi::signal_remove('script error', 'load_prompt_failed');
+ Irssi::signal_remove('script error', 'load_uberprompt_failed');
print "Script could not be loaded. Script cannot continue. "
. "Check you have uberprompt.pl installed in your path and "
diff --git a/prompt_info/uberprompt.pl b/prompt_info/uberprompt.pl
index 62bda13..cd64707 100644
--- a/prompt_info/uberprompt.pl
+++ b/prompt_info/uberprompt.pl
@@ -211,7 +211,7 @@ I<---- start of snippet ---->
}
sub load_uberprompt_failed {
- Irssi::signal_remove('script error', 'load_prompt_failed');
+ Irssi::signal_remove('script error', 'load_uberprompt_failed');
print "Script could not be loaded. Script cannot continue. "
. "Check you have uberprompt.pl installed in your path and "