]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct order of arguments to dnd-handle-multiple-urls
authorPo Lu <luangruo@yahoo.com>
Fri, 27 Oct 2023 00:25:43 +0000 (08:25 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 27 Oct 2023 00:25:43 +0000 (08:25 +0800)
* lisp/term/android-win.el (android-handle-dnd-event): Pass
new-uri-list before action.

lisp/term/android-win.el

index b73251456fa0afcac4e499b39ee5da2a19843466..960dfdcb4a6936a5e3bb8a7b5639a61352dfddd5 100644 (file)
@@ -288,8 +288,9 @@ content:// URIs into the special file names which represent them."
                            ;; transformed back into a content URI.
                            dnd-unescape-file-uris nil))))
                (push uri new-uri-list))
-             (dnd-handle-multiple-urls (posn-window posn) 'copy
-                                       new-uri-list))))))
+             (dnd-handle-multiple-urls (posn-window posn)
+                                       new-uri-list
+                                       'copy))))))
 
 (define-key special-event-map [drag-n-drop] 'android-handle-dnd-event)