]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compiler warning in x-dnd.el
authorPo Lu <luangruo@yahoo.com>
Sat, 26 Mar 2022 02:17:12 +0000 (10:17 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 26 Mar 2022 02:17:12 +0000 (10:17 +0800)
* lisp/x-dnd.el (x-dnd-xdnd-to-action): Move declaration
earlier.

lisp/x-dnd.el

index e801c4fdfce46a7c2bd4eb9d18bd38c3acce4569..17e65adc64ea49ad2619acc3d6b7bd3c28fd3738 100644 (file)
@@ -118,6 +118,14 @@ any protocol specific data.")
 (declare-function x-get-selection-internal "xselect.c"
                  (selection-symbol target-type &optional time-stamp terminal))
 
+(defconst x-dnd-xdnd-to-action
+  '(("XdndActionPrivate" . private)
+    ("XdndActionCopy" . copy)
+    ("XdndActionMove" . move)
+    ("XdndActionLink" . link)
+    ("XdndActionAsk" . ask))
+  "Mapping from XDND action types to Lisp symbols.")
+
 (defvar x-dnd-empty-state [nil nil nil nil nil nil nil])
 
 (declare-function x-register-dnd-atom "xselect.c")
@@ -394,14 +402,6 @@ Currently XDND, Motif and old KDE 1.x protocols are recognized."
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;;  XDND protocol.
 
-(defconst x-dnd-xdnd-to-action
-  '(("XdndActionPrivate" . private)
-    ("XdndActionCopy" . copy)
-    ("XdndActionMove" . move)
-    ("XdndActionLink" . link)
-    ("XdndActionAsk" . ask))
-  "Mapping from XDND action types to Lisp symbols.")
-
 (declare-function x-change-window-property "xfns.c"
                  (prop value &optional frame type format outer-P))