1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 22:11:21 -08:00

fboundp is a function, not a variable

Fixes https://github.com/jwiegley/use-package/issues/68
This commit is contained in:
John Wiegley 2013-12-04 13:31:25 -06:00
parent d4bf41eb82
commit 9d395a4019

View file

@ -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