branch: elpa/evil
commit 3d4102c8a5ba3d7b13ce9edb7afd767e65c0a331
Author: Tom Dalziel <tom...@hotmail.com>
Commit: Tom Dalziel <tom...@hotmail.com>

    Correct fix for combine-change-calls end
---
 evil-states.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-states.el b/evil-states.el
index 5c83a9da8d..fbf29ef41b 100644
--- a/evil-states.el
+++ b/evil-states.el
@@ -165,7 +165,7 @@ Handles the repeat-count of the insertion command."
           (combine-change-calls ; For performance
               (progn (goto-char (point-min))
                      (line-beginning-position line))
-              (line-end-position vcount)
+              (line-end-position (+ line vcount))
             (let (pre-command-hook post-command-hook) ; For performance
               (dotimes (v (1- vcount))
                 (goto-char (point-min))

Reply via email to