From 02532bb5821b720e0207d8bbf76941bfba8cabd4 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 24 Aug 2023 22:42:19 +0200 Subject: [PATCH] Fix custom :type of dired-mouse-drag-files * lisp/dired.el (dired-mouse-drag-files): Fix :type to allow specifying 'move'. (Bug#65497) --- lisp/dired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/dired.el b/lisp/dired.el index 4c2e9243e6c..e5110e76a76 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -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") -- 2.39.5