diff options
author | Po Lu <luangruo@yahoo.com> | 2022-05-31 21:14:16 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-05-31 21:14:16 +0800 |
commit | e10d10a3e33df49bdbb5990db8af7a05ab0b191c (patch) | |
tree | d743b299dd1282bddddae6ebbb8e097c400fe077 | |
parent | 90957dfb7a21528b19f587b1aa64752f5f2f194e (diff) | |
download | emacs-e10d10a3e33df49bdbb5990db8af7a05ab0b191c.tar.gz emacs-e10d10a3e33df49bdbb5990db8af7a05ab0b191c.tar.bz2 emacs-e10d10a3e33df49bdbb5990db8af7a05ab0b191c.zip |
Add missing part of recent changes to NS DND support
* lisp/term/ns-win.el (x-begin-drag): Implement `return-frame'
argument.
-rw-r--r-- | lisp/term/ns-win.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index d90146284f8..65abdcf0fbf 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el @@ -895,7 +895,7 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") &context (window-system ns)) (ns-get-selection selection-symbol target-type)) -(defun x-begin-drag (targets &optional action frame _return-frame _allow-current-frame) +(defun x-begin-drag (targets &optional action frame return-frame _allow-current-frame) "SKIP: real doc in xfns.c." (unless ns-dnd-selection-value (error "No local value for XdndSelection")) @@ -910,7 +910,7 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") (expand-file-name ns-dnd-selection-value)))) pasteboard)) - (ns-begin-drag frame pasteboard action))) + (ns-begin-drag frame pasteboard action return-frame))) (defun ns-handle-drag-motion (frame x y) "Handle mouse movement on FRAME at X and Y during drag-and-drop. |