aboutsummaryrefslogtreecommitdiffstats
path: root/history-search/help_b.pl
diff options
context:
space:
mode:
authorTom Feist <shabble@cowu.be>2010-07-24 17:23:13 +0000
committerTom Feist <shabble@cowu.be>2010-07-24 17:23:13 +0000
commit91f126ae4c9ea90336bdeb24001fadca79439edc (patch)
treed21b72a82b67b0979aadfa3f6efbbc2586d962b1 /history-search/help_b.pl
parentupdated script info to add my url and to change contact details to me (diff)
downloadirssi-scripts-91f126ae4c9ea90336bdeb24001fadca79439edc.tar.gz
irssi-scripts-91f126ae4c9ea90336bdeb24001fadca79439edc.zip
moved most tests to feature-tests/
Diffstat (limited to 'history-search/help_b.pl')
-rw-r--r--history-search/help_b.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/history-search/help_b.pl b/history-search/help_b.pl
deleted file mode 100644
index 8b57a45..0000000
--- a/history-search/help_b.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-use strict;
-use warnings;
-
-use Irssi;
-
-our $help = "this is help for b";
-
-Irssi::command_bind('help', sub {
- if ($_[0] eq 'test_b') {
- Irssi::print($help, MSGLEVEL_CLIENTCRAP);
- Irssi::signal_stop();
- return;
- }
- }
-);