From 3d4102c8a5ba3d7b13ce9edb7afd767e65c0a331 Mon Sep 17 00:00:00 2001 From: Tom Dalziel Date: Tue, 18 Jun 2024 20:31:52 +0200 Subject: [PATCH] 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 5c83a9da..fbf29ef4 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))