diff options
author | Tom Feist <shabble@metavore.org> | 2011-04-18 05:30:41 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-04-18 05:30:41 +0000 |
commit | 6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea (patch) | |
tree | 072dd406daf104a3230f7984d6e842b85aa1b45b | |
parent | updated root README to mention some of the newer stuff. (diff) | |
download | irssi-scripts-6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea.tar.gz irssi-scripts-6a1652b99b5653e60d9bf24fda1c36c5f3dd01ea.zip |
ido-mode/ido_switcher: remove an annoying debug print when switching channels/queries mode.
-rw-r--r-- | ido-mode/ido_switcher.pl | 2 |
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; } |