aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2023-10-27 08:25:43 +0800
committerPo Lu2023-10-27 08:25:43 +0800
commit4a4677aa32fcecd5d490a096e4de0e03ebe55b5e (patch)
treea6021af14513dd83b35211d6d434140f172709d3
parent194a8f5c1406dd7e762376bdfde78d1b7d01b6b1 (diff)
downloademacs-4a4677aa32fcecd5d490a096e4de0e03ebe55b5e.tar.gz
emacs-4a4677aa32fcecd5d490a096e4de0e03ebe55b5e.zip
Correct order of arguments to dnd-handle-multiple-urls
* lisp/term/android-win.el (android-handle-dnd-event): Pass new-uri-list before action.
-rw-r--r--lisp/term/android-win.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/term/android-win.el b/lisp/term/android-win.el
index b73251456fa..960dfdcb4a6 100644
--- a/lisp/term/android-win.el
+++ b/lisp/term/android-win.el
@@ -288,8 +288,9 @@ content:// URIs into the special file names which represent them."
288 ;; transformed back into a content URI. 288 ;; transformed back into a content URI.
289 dnd-unescape-file-uris nil)))) 289 dnd-unescape-file-uris nil))))
290 (push uri new-uri-list)) 290 (push uri new-uri-list))
291 (dnd-handle-multiple-urls (posn-window posn) 'copy 291 (dnd-handle-multiple-urls (posn-window posn)
292 new-uri-list)))))) 292 new-uri-list
293 'copy))))))
293 294
294(define-key special-event-map [drag-n-drop] 'android-handle-dnd-event) 295(define-key special-event-map [drag-n-drop] 'android-handle-dnd-event)
295 296