From 76667a1a46d896d673f51f7f5782125d06b3a022 Mon Sep 17 00:00:00 2001 From: Tom Dalziel Date: Fri, 3 May 2024 18:56:12 +0200 Subject: [PATCH] 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 e0554e60..dccd254c 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))))))