From: Basil L. Contovounesios Date: Thu, 7 May 2020 20:40:09 +0000 (+0100) Subject: ; Update recent function declaration in dnd.el X-Git-Tag: emacs-28.0.90~7412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=958ddc9526aa7bb1d165d45be43efc4d68589b1e;p=emacs.git ; Update recent function declaration in dnd.el * lisp/dnd.el (dnd-handle-one-url): Update arglist declaration for browse-url-select-handler following recent change. --- diff --git a/lisp/dnd.el b/lisp/dnd.el index 298241bf174..f47f4a2c30e 100644 --- a/lisp/dnd.el +++ b/lisp/dnd.el @@ -102,7 +102,8 @@ is what has been dropped. Returns ACTION." nil) (catch 'done ;; Autoloaded but the byte-compiler still complains. - (declare-function browse-url-select-handler "browse-url" (url)) + (declare-function browse-url-select-handler "browse-url" + (url &optional kind)) (let ((browser (browse-url-select-handler url 'internal))) (when browser (setq ret 'private)