Variable: dnd-last-dragged-remote-file

dnd-last-dragged-remote-file is a variable defined in dnd.el.gz.

Value

nil

Documentation

If non-nil, the name of a local copy of the last remote file that was dragged.

This may also be a list of files, if multiple files were dragged. It can't be removed immediately after the drag-and-drop operation completes, since there is no way to determine when the drop target has finished opening it. So instead, this file is removed when Emacs exits or the user drags another file.

Source Code

;; Defined in /usr/src/emacs/lisp/dnd.el.gz
;;; Functions for dragging stuff to other programs.  These build upon
;;; the lower-level `x-begin-drag' interface, but take care of data
;;; types and abstracting around the different return values.

(defvar dnd-last-dragged-remote-file nil
  "If non-nil, the name of a local copy of the last remote file that was dragged.
This may also be a list of files, if multiple files were dragged.
It can't be removed immediately after the drag-and-drop operation
completes, since there is no way to determine when the drop
target has finished opening it.  So instead, this file is removed
when Emacs exits or the user drags another file.")