aboutsummaryrefslogtreecommitdiffstats
path: root/ido-mode
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-04-18 05:30:41 +0000
committerTom Feist <shabble@metavore.org>2011-04-18 05:30:41 +0000
commit6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea (patch)
tree072dd406daf104a3230f7984d6e842b85aa1b45b /ido-mode
parentupdated root README to mention some of the newer stuff. (diff)
downloadirssi-scripts-6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea.tar.gz
irssi-scripts-6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea.zip
ido-mode/ido_switcher: remove an annoying debug print when switching channels/queries mode.
Diffstat (limited to 'ido-mode')
-rw-r--r--ido-mode/ido_switcher.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ido-mode/ido_switcher.pl b/ido-mode/ido_switcher.pl
index a5ab859..b8a604b 100644
--- a/ido-mode/ido_switcher.pl
+++ b/ido-mode/ido_switcher.pl
@@ -558,7 +558,7 @@ sub get_all_windows {
if ($mode_type ne 'ALL') {
@mode_cache = @window_cache;
- @window_cache = grep { print "Type: " . $_->{type}; $_->{type} eq $mode_type } @window_cache;
+ @window_cache = grep { $_->{type} eq $mode_type } @window_cache;
} else {
@window_cache = @mode_cache if @mode_cache;
}