diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mouse.el | 3 | ||||
-rw-r--r-- | lisp/term/haiku-win.el | 3 | ||||
-rw-r--r-- | lisp/term/ns-win.el | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 024a018bb91..6a2b1738f71 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -3244,7 +3244,6 @@ is copied instead of being cut." (cdr mouse-position))))))) (not (posn-window (event-end event)))))) (setq drag-again-mouse-position nil) - (mouse-drag-and-drop-region-hide-tooltip) (gui-set-selection 'XdndSelection value-selection) (let ((drag-action-or-frame (condition-case nil @@ -3259,7 +3258,7 @@ is copied instead of being cut." ;; `return-frame' doesn't ;; work, allow dropping on ;; the drop frame. - (eq window-system 'haiku)) + (eq window-system 'haiku) t) (quit nil)))) (when (framep drag-action-or-frame) ;; With some window managers `x-begin-drag' diff --git a/lisp/term/haiku-win.el b/lisp/term/haiku-win.el index 6ddf546ee57..58217513902 100644 --- a/lisp/term/haiku-win.el +++ b/lisp/term/haiku-win.el @@ -366,7 +366,8 @@ take effect on menu items until the menu bar is updated again." (setq haiku-drag-track-function #'haiku-dnd-drag-handler) -(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 _follow-tooltip) "SKIP: real doc in xfns.c." (unless haiku-dnd-selection-value (error "No local value for XdndSelection")) diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index 2e021b9b29c..0d46a895ce8 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el @@ -895,7 +895,8 @@ 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 _follow-tooltip) "SKIP: real doc in xfns.c." (unless ns-dnd-selection-value (error "No local value for XdndSelection")) |