diff options
| author | Jan Djärv | 2006-08-11 07:32:39 +0000 |
|---|---|---|
| committer | Jan Djärv | 2006-08-11 07:32:39 +0000 |
| commit | 2f2f340fb561971fef6a846ff4621c69dab0a969 (patch) | |
| tree | 9b462ba0c7fcef938d05939eb936b14a6df56fc8 | |
| parent | 0c584069b6212a25be12aa9edf2f713b03f54f5b (diff) | |
| download | emacs-2f2f340fb561971fef6a846ff4621c69dab0a969.tar.gz emacs-2f2f340fb561971fef6a846ff4621c69dab0a969.zip | |
* x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/x-dnd.el | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a994da42625..ada27d2c275 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-08-11 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom. | ||
| 4 | |||
| 1 | 2006-08-10 Romain Francoise <romain@orebokech.com> | 5 | 2006-08-10 Romain Francoise <romain@orebokech.com> |
| 2 | 6 | ||
| 3 | * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'. | 7 | * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'. |
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 693a2d7fa4b..81fe9a8e868 100644 --- a/lisp/x-dnd.el +++ b/lisp/x-dnd.el | |||
| @@ -121,6 +121,12 @@ any protocol specific data.") | |||
| 121 | 121 | ||
| 122 | (defun x-dnd-init-frame (&optional frame) | 122 | (defun x-dnd-init-frame (&optional frame) |
| 123 | "Setup drag and drop for FRAME (i.e. create appropriate properties)." | 123 | "Setup drag and drop for FRAME (i.e. create appropriate properties)." |
| 124 | (x-register-dnd-atom "DndProtocol" frame) | ||
| 125 | (x-register-dnd-atom "_MOTIF_DRAG_AND_DROP_MESSAGE" frame) | ||
| 126 | (x-register-dnd-atom "XdndEnter" frame) | ||
| 127 | (x-register-dnd-atom "XdndPosition" frame) | ||
| 128 | (x-register-dnd-atom "XdndLeave" frame) | ||
| 129 | (x-register-dnd-atom "XdndDrop" frame) | ||
| 124 | (x-dnd-init-xdnd-for-frame frame) | 130 | (x-dnd-init-xdnd-for-frame frame) |
| 125 | (x-dnd-init-motif-for-frame frame)) | 131 | (x-dnd-init-motif-for-frame frame)) |
| 126 | 132 | ||