Correct order of arguments to dnd-handle-multiple-urls

* lisp/term/android-win.el (android-handle-dnd-event): Pass
new-uri-list before action.
This commit is contained in:
Po Lu 2023-10-27 08:25:43 +08:00
parent 194a8f5c14
commit 4a4677aa32

View 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)