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

    Fix regression cauased by 55f29f0
    
    Refactoring accidentally changed `evil-operator-state-p`
    to `evil-operator-state`
---
 evil-commands.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-commands.el b/evil-commands.el
index e0554e60f3..dccd254c44 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -76,7 +76,7 @@ of the line or the buffer; just return nil."
         (forward-char)
         ;; don't put the cursor on a newline
         (or evil-move-beyond-eol
-            (evil-visual-state-p) (evil-operator-state)
+            (evil-visual-state-p) (evil-operator-state-p)
             (not (eolp)) (bolp)
             (forward-char))))))
 

Reply via email to