projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4bf41e
)
fboundp is a function, not a variable
author
John Wiegley
<johnw@newartisans.com>
Wed, 4 Dec 2013 19:31:25 +0000
(13:31 -0600)
committer
John 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
patch
|
blob
|
history
diff --git
a/lisp/use-package/use-package.el
b/lisp/use-package/use-package.el
index 03bec74602a24a81d86b31a57a505a6c172b5a40..d2e065a3ffa17be969098cb9bc642a202f8f1017 100644
(file)
--- 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