diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2004-02-05 11:46:57 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2004-02-05 11:46:57 +0000 |
commit | 14ca885408a6fcf5191d5e7869b2726c91081a71 (patch) | |
tree | 7ef63542c45b40fbc5631beebbd641b08c887c68 /lisp/x-dnd.el | |
parent | ebaff4af6850c6a11c29850b653affd35ab1bdc5 (diff) | |
download | emacs-14ca885408a6fcf5191d5e7869b2726c91081a71.tar.gz |
* x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
Diffstat (limited to 'lisp/x-dnd.el')
-rw-r--r-- | lisp/x-dnd.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 18fcb62d6bf..ad55e3cbd34 100644 --- a/lisp/x-dnd.el +++ b/lisp/x-dnd.el @@ -289,8 +289,7 @@ Return nil if URI is not a local file." (let ((f (cond ((string-match "^file:///" uri) ; XDND format. (substring uri (1- (match-end 0)))) ((string-match "^file:" uri) ; Old KDE, Motif, Sun - (substring uri (match-end 0))) - nil))) + (substring uri (match-end 0)))))) (when (and f must-exist) (let* ((decoded-f (decode-coding-string f |