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

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

[elpa] 55/77: Fix easy-kill-backward-down to handle prefix chars


From: Leo Liu
Subject: [elpa] 55/77: Fix easy-kill-backward-down to handle prefix chars
Date: Sat, 05 Apr 2014 04:08:23 +0000

leoliu pushed a commit to branch master
in repository elpa.

commit 1c52ccd1a14878fb41b6ad45285b2bbc88f6e9f3
Author: Leo Liu <address@hidden>
Date:   Wed Oct 16 11:38:22 2013 +0800

    Fix easy-kill-backward-down to handle prefix chars
    
    Otherwise it fails to shrink in this example:
    
      '((t (:inherit secondary-selection)))
---
 easy-kill.el |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/easy-kill.el b/easy-kill.el
index f5bc25f..1661bd3 100644
--- a/easy-kill.el
+++ b/easy-kill.el
@@ -415,6 +415,7 @@ inspected."
   (condition-case nil
       (progn
         (easy-kill-backward-up)
+        (backward-prefix-chars)
         (if (and (or (not bound) (> (point) bound))
                  (/= point (point)))
             (easy-kill-backward-down (point) bound)



reply via email to

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