diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-12 03:56:20 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-12 03:56:20 +0000 |
commit | aa360da10dc1130e40bb82225ee8988a2465f38a (patch) | |
tree | 24fea572da73c841761a9d8d8d59645bfa61d926 /lisp/dired.el | |
parent | 1ad31f1bbae0aa9de6ff997803dcb4466b24e47d (diff) | |
download | emacs-aa360da10dc1130e40bb82225ee8988a2465f38a.tar.gz |
Add some compiler declarations, for builds without X.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 61c3549ecc1..d53a6831b13 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -3315,6 +3315,10 @@ Anything else means ask for each directory." (declare-function dired-relist-entry "dired-aux" (file)) (declare-function make-symbolic-link "fileio.c") +;; Only used when (featurep 'dnd). +(declare-function dnd-get-local-file-name "dnd" (uri &optional must-exist)) +(declare-function dnd-get-local-file-uri "dnd" (uri)) + (defun dired-dnd-handle-local-file (uri action) "Copy, move or link a file to the dired directory. URI is the file to handle, ACTION is one of copy, move, link or ask. |