emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Should drag and drop adhere to `mouse-yank-at-point'?


From: Jorgen Schaefer
Subject: Should drag and drop adhere to `mouse-yank-at-point'?
Date: Sat, 17 Jun 2006 01:55:42 +0200
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux)

Hi there!

Currently, dragging a piece of text into Emacs will insert the
text where the drag button was released, even when
`mouse-yank-at-point' is non-nil. Is this intended behavior?

If so, could a new customize option for this be added?
If not, the fix is trivial:

*** lisp/x-dnd.el.orig  Sat Jun 17 01:51:29 2006
--- lisp/x-dnd.el       Sat Jun 17 01:52:24 2006
***************
*** 319,325 ****
          ;; If dropping in an ordinary window which we could use,
          ;; let dnd-open-file-other-window specify what to do.
          (progn
!           (goto-char (posn-point (event-start event)))
            (funcall handler window action data))
        ;; If we can't display the file here,
        ;; make a new window for it.
--- 319,326 ----
          ;; If dropping in an ordinary window which we could use,
          ;; let dnd-open-file-other-window specify what to do.
          (progn
!             (when (not mouse-yank-at-point)
!               (goto-char (posn-point (event-start event))))
            (funcall handler window action data))
        ;; If we can't display the file here,
        ;; make a new window for it.


Regards,
        -- Jorgen

-- 
((email . "address@hidden") (www . "http://www.forcix.cx/";)
 (gpg   . "1024D/028AF63C")   (irc . "nick forcer on IRCnet"))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]