; Fix recent byte-compiler warning in dnd.el again
* lisp/dnd.el (dnd-handle-one-url): Declare new autoloaded function browse-url-select-handler to silence the byte-compiler during 'make bootstrap'.
This commit is contained in:
parent
5b5039caa2
commit
263ab750a5
1 changed files with 2 additions and 0 deletions
|
@ -101,6 +101,8 @@ is what has been dropped. Returns ACTION."
|
|||
(throw 'done t)))
|
||||
nil)
|
||||
(catch 'done
|
||||
;; Autoloaded but the byte-compiler still complains.
|
||||
(declare-function browse-url-select-handler "browse-url" (url))
|
||||
(let ((browser (browse-url-select-handler url)))
|
||||
(when browser
|
||||
(setq ret 'private)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue