mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Fix XDS file name expansion
* lisp/x-dnd.el (x-dnd-handle-xds-drop): Expand file names again. That code was mistakenly removed.
This commit is contained in:
parent
0bf3873b1c
commit
e185526d21
1 changed files with 3 additions and 2 deletions
|
|
@ -1640,8 +1640,9 @@ VERSION is the version of the XDND protocol understood by SOURCE."
|
|||
desired-name
|
||||
(or file-name-coding-system
|
||||
default-file-name-coding-system)))
|
||||
(let ((name (funcall x-dnd-direct-save-function
|
||||
t desired-name)))
|
||||
(let ((name (expand-file-name
|
||||
(funcall x-dnd-direct-save-function
|
||||
t desired-name))))
|
||||
(setq save-to name save-to-remote name))
|
||||
(when save-to
|
||||
(if (file-remote-p save-to)
|
||||
|
|
|
|||
Loading…
Reference in a new issue