]> git.eshelyaron.com Git - emacs.git/commitdiff
Expand file names read from XDS functions
authorPo Lu <luangruo@yahoo.com>
Fri, 1 Jul 2022 08:32:37 +0000 (16:32 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 1 Jul 2022 08:32:37 +0000 (16:32 +0800)
* lisp/x-dnd.el (x-dnd-handle-xds-drop): Expand file names
before use.  Some GUI dialogs read un-expanded file names.

lisp/x-dnd.el

index efd774f4e94eb3420bbb16c03ba69fcd04b23d5f..d78f926ee7adbc43eea5010ece857bedad3fa76f 100644 (file)
@@ -1369,8 +1369,9 @@ VERSION is the version of the XDND protocol understood by SOURCE."
                                 desired-name
                                 (or file-name-coding-system
                                     default-file-name-coding-system)))
-            (setq save-to (funcall x-dnd-direct-save-function
-                                   t desired-name))
+            (setq save-to (expand-file-name
+                           (funcall x-dnd-direct-save-function
+                                    t desired-name)))
             (when save-to
               (with-selected-window window
                 (let ((uri (format "file://%s%s" (system-name) save-to)))