]> git.eshelyaron.com Git - emacs.git/commitdiff
fboundp is a function, not a variable
authorJohn Wiegley <johnw@newartisans.com>
Wed, 4 Dec 2013 19:31:25 +0000 (13:31 -0600)
committerJohn Wiegley <johnw@newartisans.com>
Wed, 4 Dec 2013 19:31:25 +0000 (13:31 -0600)
Fixes https://github.com/jwiegley/use-package/issues/68

lisp/use-package/use-package.el

index 03bec74602a24a81d86b31a57a505a6c172b5a40..d2e065a3ffa17be969098cb9bc642a202f8f1017 100644 (file)
 (require 'bytecomp)
 (require 'diminish nil t)
 
-(when fboundp 'declare-function
+(when (fboundp 'declare-function)
   (declare-function package-installed-p 'package))
 
 (defgroup use-package nil