Variable: x-dnd-motif-to-action

x-dnd-motif-to-action is a variable defined in x-dnd.el.gz.

Value

((1 . move)
 (2 . copy)
 (3 . link)
 (4 . link)
 (2 . private))

Documentation

Mapping from number to operation for Motif DND.

Source Code

;; Defined in /usr/src/emacs/lisp/x-dnd.el.gz
(defvar x-dnd-motif-to-action
  '((1 . move)
    (2 . copy)
    (3 . link)	; Both 3 and 4 has been seen as link.
    (4 . link)
    (2 . private)) ; Motif does not have private, so use copy for private.
  "Mapping from number to operation for Motif DND.")