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:
parent
fc5de406be
commit
02532bb582
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue