diff options
| author | Tom Feist <shabble@metavore.org> | 2010-09-30 20:13:39 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2010-09-30 20:13:39 +0000 | 
| commit | 5e644a649b3bf7ed93a8b355f88998ee50d4e634 (patch) | |
| tree | 1edc8dd08931e768aef4805a1411e173e93989ba | |
| parent | renamed $ratio for some more 'my masks ... scope' weirdness in 5.8.9 (diff) | |
| download | irssi-scripts-5e644a649b3bf7ed93a8b355f88998ee50d4e634.tar.gz irssi-scripts-5e644a649b3bf7ed93a8b355f88998ee50d4e634.zip | |
missed some $ratios in teh debug prints when fixing last time
| -rw-r--r-- | vim-mode/vim_mode.pl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 40a5a14..ab948c3 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -926,7 +926,7 @@ sub _matching_windows {                                 item => undef,                                ratio => $win_ratio,                                 text => $window->{name} }; -            print ":b $window->{name}: $ratio" if DEBUG; +            print ":b $window->{name}: $win_ratio" if DEBUG;          }          # Matching Window item names (= channels).          foreach my $item ($window->items()) { @@ -943,7 +943,7 @@ sub _matching_windows {                                     item => $item,                                    ratio => $item_ratio,                                     text => $item->{name} }; -                print ":b $window->{name} $item->{name}: $ratio" if DEBUG; +                print ":b $window->{name} $item->{name}: $item_ratio" if DEBUG;              }          }      } | 
