From: Noam Postavsky Date: Mon, 18 Jul 2016 02:28:25 +0000 (-0400) Subject: Fix declare-function call: FILE must be a string X-Git-Tag: emacs-29.0.90~1306^2~15^2~292^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79c38c5184;p=emacs.git Fix declare-function call: FILE must be a string --- diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index dd1e3426993..f81b64a02c7 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -46,7 +46,7 @@ (eval-when-compile (require 'cl)) (eval-when-compile (require 'regexp-opt)) -(declare-function package-installed-p 'package) +(declare-function package-installed-p "package") (defgroup use-package nil "A use-package declaration for simplifying your `.emacs'."