mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
fboundp is a function, not a variable
Fixes https://github.com/jwiegley/use-package/issues/68
This commit is contained in:
parent
d4bf41eb82
commit
9d395a4019
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue