Add more explanatory prose.

This commit is contained in:
Magnar Sveen 2012-07-18 09:15:50 +02:00
parent 37ddaf2cbe
commit 6f9911fa98

View File

@ -202,6 +202,8 @@ from being executed if in multiple-cursors-mode."
(when interprogram-paste (when interprogram-paste
;; Add interprogram-paste to normal kill ring, just ;; Add interprogram-paste to normal kill ring, just
;; like current-kill usually does for itself. ;; like current-kill usually does for itself.
;; We have to do the work for it tho, since the funcall only returns
;; something once. It is not a pure function.
(let ((interprogram-cut-function nil)) (let ((interprogram-cut-function nil))
(if (listp interprogram-paste) (if (listp interprogram-paste)
(mapc 'kill-new (nreverse interprogram-paste)) (mapc 'kill-new (nreverse interprogram-paste))