From 263ab750a5963af837fd69647071faa92093011c Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Thu, 7 May 2020 18:36:53 +0100 Subject: [PATCH] ; 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'. --- lisp/dnd.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/dnd.el b/lisp/dnd.el index c185794d6ea..102bc752b07 100644 --- a/lisp/dnd.el +++ b/lisp/dnd.el @@ -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) -- 2.39.5