From 4af8b17149ee04655f038229c6103963f247ff87 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Thu, 14 May 2020 12:23:23 +0200 Subject: [PATCH] Fix customisation of mouse-drag-and-drop-region (bug#41251) Reported by David Ponce. * lisp/mouse.el (mouse-drag-and-drop-region): Add missing unquote. --- lisp/mouse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mouse.el b/lisp/mouse.el index 9703d957d57..795b4da19e1 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -2556,7 +2556,7 @@ region, text is copied instead of being cut." (lambda (modifier) `(const :tag ,(format "Enable, but copy with the %s modifier" modifier) - modifier)) + ,modifier)) '(alt super hyper shift control meta)) (other :tag "Enable dragging the region" t)) :version "26.1") -- 2.39.5