projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
194a8f5
)
Correct order of arguments to dnd-handle-multiple-urls
author
Po Lu
<luangruo@yahoo.com>
Fri, 27 Oct 2023 00:25:43 +0000
(08:25 +0800)
committer
Po 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
patch
|
blob
|
history
diff --git
a/lisp/term/android-win.el
b/lisp/term/android-win.el
index b73251456fa0afcac4e499b39ee5da2a19843466..960dfdcb4a6936a5e3bb8a7b5639a61352dfddd5 100644
(file)
--- 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."
;; 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)