emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil e41151e694 2/2: Revert "Improve on evil-append's dete


From: ELPA Syncer
Subject: [nongnu] elpa/evil e41151e694 2/2: Revert "Improve on evil-append's determination of eolp"
Date: Mon, 1 Aug 2022 05:58:23 -0400 (EDT)

branch: elpa/evil
commit e41151e694e658e82f75d6709c215606d3f1aab0
Author: Tom Dalziel <tom_dl@hotmail.com>
Commit: Tom Dalziel <tom_dl@hotmail.com>

    Revert "Improve on evil-append's determination of eolp"
    
    This reverts commit 25885ddc07d4cf09c600b2b71f226cfcf3a5746d.
    
    Fails on emacs 29 because of long-line handling: #1617
---
 evil-commands.el | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/evil-commands.el b/evil-commands.el
index 916e024003..ddf5603ce4 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -2612,10 +2612,7 @@ the lines."
         (evil-visual-rotate 'lower-right)
         (backward-char)
         (evil-append count)))
-    (unless (= (current-column)
-               (save-excursion (end-of-line) (current-column)))
-      ;; Subtly different from `(eolp)' - see issue #1617
-      (forward-char))
+    (unless (eolp) (forward-char))
     (evil-insert count vcount skip-empty-lines)
     (add-hook 'post-command-hook #'evil-maybe-remove-spaces)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]