From bda8469be55134d617f6a5409634758842fef15f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johan=20Bockg=C3=A5rd?= Date: Sun, 12 Apr 2015 15:55:32 +0200 Subject: [PATCH] mouse-sel.el: Fix mouse-sel-get-selection-function * lisp/obsolete/mouse-sel.el (mouse-sel-get-selection-function): Use gui--last-selected-text-primary instead of no longer existing gui-last-selected-text. --- lisp/obsolete/mouse-sel.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/obsolete/mouse-sel.el b/lisp/obsolete/mouse-sel.el index 25eb3e66a65..fcadedf6262 100644 --- a/lisp/obsolete/mouse-sel.el +++ b/lisp/obsolete/mouse-sel.el @@ -314,7 +314,7 @@ is `interprogram-cut-paste'.") (if (eq selection 'PRIMARY) (or (gui-selection-value) (bound-and-true-p x-last-selected-text-primary) - gui-last-selected-text) + gui--last-selected-text-primary) (x-get-selection selection))) "Function to call to get the selection. Called with one argument: -- 2.11.4.GIT