diff options
| -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;          } | 
