Skip to content

Commit

Permalink
Correct fix for combine-change-calls end
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdl89 committed Jun 18, 2024
1 parent 051e5c9 commit 3d4102c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evil-states.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 3d4102c

Please sign in to comment.