diff options
| author | Tom Feist <shabble@metavore.org> | 2011-04-06 09:28:27 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2011-04-06 09:28:27 +0000 | 
| commit | 4788aac670b70cf5799bb8c8c8444ec69373547b (patch) | |
| tree | 16b42dd621efbcfb09ccfb7a44531563b8e3b8b4 /vim-mode | |
| parent | vim_mode: added history support to Ex mode. Can be scrolled backwards and (diff) | |
| download | irssi-scripts-4788aac670b70cf5799bb8c8c8444ec69373547b.tar.gz irssi-scripts-4788aac670b70cf5799bb8c8c8444ec69373547b.zip | |
vim_mode: fix ambiguous shift warning.ex_history
Diffstat (limited to 'vim-mode')
| -rw-r--r-- | vim-mode/vim_mode.pl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index b43185f..a731269 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -626,7 +626,7 @@ my $completion_active = 0;  my $completion_string = '';  sub script_is_loaded { -    return exists($Irssi::Script::{shift . '::'}); +    return exists($Irssi::Script::{shift(@_) . '::'});  } | 
