]> git.eshelyaron.com Git - emacs.git/commitdiff
(x-clipboard-yank): Use x-selection-value instead of x-get-selection.
authorKenichi Handa <handa@m17n.org>
Fri, 10 Jun 2005 01:52:13 +0000 (01:52 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 10 Jun 2005 01:52:13 +0000 (01:52 +0000)
lisp/ChangeLog
lisp/term/x-win.el

index 8f24016c3488c3086513e18f612eec85a4e5ec73..e3d6cdc98d6946b4b1a43a83fdff27b08cc35906 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-10  Zhang Wei  <id.brep@gmail.com>  (tiny change)
+
+       * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
+       of x-get-selection.
+
 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
 
        * comint.el (comint-mode, comint-snapshot-last-prompt):
index 5b4ff6d2f7c86c906dc47ec035529840024d7dc2..a4118029eaabea94145682db2cb3a2979e4e1f82 100644 (file)
@@ -2467,7 +2467,7 @@ order until succeed.")
   (interactive)
   (let ((clipboard-text 
         (condition-case nil
-            (x-get-selection 'CLIPBOARD)
+            (x-selection-value 'CLIPBOARD)
           (error nil)))
        (x-select-enable-clipboard t))
     (if (and clipboard-text (> (length clipboard-text) 0))