From 20c5a2b31de167f4491e557b2ff3e10061ab61d1 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 29 Sep 2010 23:37:35 +0200 Subject: vim_mode: Fix missing argument to cmd_operator_d(). --- vim-mode/vim_mode.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vim-mode') diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 99268a5..8e05927 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -316,7 +316,7 @@ sub cmd_redo { sub cmd_operator_c { my ($old_pos, $new_pos, $move, $repeat) = @_; - cmd_operator_d($old_pos, $new_pos, $move); + cmd_operator_d($old_pos, $new_pos, $move, $repeat); if (!$repeat) { _update_mode(M_INS); } else { -- cgit v1.2.3