1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

Fix custom :type of dired-mouse-drag-files

* lisp/dired.el (dired-mouse-drag-files): Fix :type to allow
specifying 'move'.  (Bug#65497)
This commit is contained in:
Stefan Kangas 2023-08-24 22:42:19 +02:00
parent fc5de406be
commit 02532bb582

View File

@ -294,7 +294,7 @@ then this will always be equivalent to `move'."
(revert-buffer nil t)))))
:type '(choice (const :tag "Don't allow dragging" nil)
(const :tag "Copy file to new location" t)
(const :tag "Move file to new location" t)
(const :tag "Move file to new location" move)
(const :tag "Create symbolic link to file" link))
:group 'dired
:version "29.1")