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

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

[elpa] 65/77: Fix #8: Don't strip trailing blank chars


From: Leo Liu
Subject: [elpa] 65/77: Fix #8: Don't strip trailing blank chars
Date: Sat, 05 Apr 2014 04:08:26 +0000

leoliu pushed a commit to branch master
in repository elpa.

commit c97d3dfeca601190f403d12aebcd376e39ab89f1
Author: Leo Liu <address@hidden>
Date:   Fri Nov 1 09:33:42 2013 +0800

    Fix #8: Don't strip trailing blank chars
---
 easy-kill.el |   23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/easy-kill.el b/easy-kill.el
index 9c2638d..a105777 100644
--- a/easy-kill.el
+++ b/easy-kill.el
@@ -126,13 +126,6 @@ Do nothing if `easy-kill-inhibit-message' is non-nil."
     (let (message-log-max)
       (apply 'message format-string args))))
 
-(defun easy-kill-strip-trailing (s)
-  (cond ((stringp s)
-         (if (string-match "[ \t\f\r\n]*\\'" s)
-             (substring s 0 (match-beginning 0))
-           (error "`string-match' failed in `easy-kill-strip-trailing'")))
-        (t "")))
-
 (defvar easy-kill-candidate nil)
 (defvar easy-kill-append nil)
 (defvar easy-kill-mark nil)
@@ -176,13 +169,13 @@ Do nothing if `easy-kill-inhibit-message' is non-nil."
 If the overlay specified by variable `easy-kill-candidate' has
 non-zero length, it is the string covered by the overlay.
 Otherwise, it is the value of the overlay's candidate property."
-  (easy-kill-strip-trailing
-   (with-current-buffer (overlay-buffer easy-kill-candidate)
-     (if (/= (overlay-start easy-kill-candidate)
-             (overlay-end easy-kill-candidate))
-         (filter-buffer-substring (overlay-start easy-kill-candidate)
-                                  (overlay-end easy-kill-candidate))
-       (overlay-get easy-kill-candidate 'candidate)))))
+  (with-current-buffer (overlay-buffer easy-kill-candidate)
+    (or (if (/= (overlay-start easy-kill-candidate)
+                (overlay-end easy-kill-candidate))
+            (filter-buffer-substring (overlay-start easy-kill-candidate)
+                                     (overlay-end easy-kill-candidate))
+          (overlay-get easy-kill-candidate 'candidate))
+        "")))
 
 (defun easy-kill-adjust-candidate (thing &optional beg end)
   "Adjust kill candidate to THING, BEG, END.
@@ -214,7 +207,7 @@ candidate property instead."
     (let ((interprogram-cut-function nil)
           (interprogram-paste-function nil))
       (kill-new (if easy-kill-append
-                    (concat (car kill-ring) "\n" (easy-kill-candidate))
+                    (concat (car kill-ring) (easy-kill-candidate))
                   (easy-kill-candidate))
                 easy-kill-append))
     t))



reply via email to

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