changeset 13547:37cf3f6ba99c

(mouse-sel-lost-selection-hook): Use (car selection).
author Richard M. Stallman <rms@gnu.org>
date Tue, 14 Nov 1995 22:57:02 +0000
parents b979fa5d0d0b
children 9be6c740e36f
files lisp/mouse-sel.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mouse-sel.el	Tue Nov 14 22:26:25 1995 +0000
+++ b/lisp/mouse-sel.el	Tue Nov 14 22:57:02 1995 +0000
@@ -574,7 +574,7 @@
 
 (defun mouse-sel-lost-selection-hook (selection)
   "Remove the overlay for a lost selection."
-  (let ((overlay (mouse-sel-selection-overlay selection)))
+  (let ((overlay (mouse-sel-selection-overlay (car selection))))
     (delete-overlay overlay)))
 
 (add-hook 'x-lost-selection-hooks 'mouse-sel-lost-selection-hook)