From: John Wiegley Date: Wed, 4 Dec 2013 19:31:25 +0000 (-0600) Subject: fboundp is a function, not a variable X-Git-Tag: emacs-29.0.90~1306^2~15^2~430 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d395a4019;p=emacs.git fboundp is a function, not a variable Fixes https://github.com/jwiegley/use-package/issues/68 --- diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 03bec74602a..d2e065a3ffa 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -261,7 +261,7 @@ (require 'bytecomp) (require 'diminish nil t) -(when fboundp 'declare-function +(when (fboundp 'declare-function) (declare-function package-installed-p 'package)) (defgroup use-package nil