diff options
| author | Mattias EngdegÄrd | 2020-05-14 12:23:23 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2020-05-14 12:23:23 +0200 |
| commit | 4af8b17149ee04655f038229c6103963f247ff87 (patch) | |
| tree | 671c7bd3ba05940e50abfa75bda91e065d337b9a | |
| parent | 1d559581b3bcd91644e44b1e3a3788614d99924f (diff) | |
| download | emacs-4af8b17149ee04655f038229c6103963f247ff87.tar.gz emacs-4af8b17149ee04655f038229c6103963f247ff87.zip | |
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.
| -rw-r--r-- | lisp/mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 2556 | (lambda (modifier) | 2556 | (lambda (modifier) |
| 2557 | `(const :tag ,(format "Enable, but copy with the %s modifier" | 2557 | `(const :tag ,(format "Enable, but copy with the %s modifier" |
| 2558 | modifier) | 2558 | modifier) |
| 2559 | modifier)) | 2559 | ,modifier)) |
| 2560 | '(alt super hyper shift control meta)) | 2560 | '(alt super hyper shift control meta)) |
| 2561 | (other :tag "Enable dragging the region" t)) | 2561 | (other :tag "Enable dragging the region" t)) |
| 2562 | :version "26.1") | 2562 | :version "26.1") |