branch: elpa/evil-iedit-state
commit e1a6bfb87c2c7da9f21276c15d68c7018b747c2c
Author: Rodrigo Kassick <kass...@gmail.com>
Commit: Sylvain Benner <sylvain.ben...@gmail.com>

    fix: call evil-beginning-of-line instead of it's evil-digit-argument 
counterpart
    
    evil-digit-argument-or-evil-beginning-of-line does not exist anymore
---
 evil-iedit-state.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-iedit-state.el b/evil-iedit-state.el
index 24b68cde78..c739f598c0 100644
--- a/evil-iedit-state.el
+++ b/evil-iedit-state.el
@@ -84,7 +84,7 @@ If INTERACTIVE is non-nil then COMMAND is called 
interactively."
   (let ((overlay (iedit-find-current-occurrence-overlay)))
     (if overlay
         (goto-char (overlay-start overlay))
-      (call-interactively 'evil-digit-argument-or-evil-beginning-of-line))))
+      (call-interactively 'evil-beginning-of-line))))
 
 (defun evil-iedit-state//goto-overlay-end ()
   "Return the position of the end of the current overlay."

Reply via email to