mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 03:39:38 +00:00
Use require', not
load', when byte-compiling
This commit is contained in:
parent
97f0287e19
commit
27fd32c47b
1 changed files with 1 additions and 1 deletions
|
@ -651,7 +651,7 @@ extending any keys already present."
|
||||||
,(when (eq use-package-verbose 'debug)
|
,(when (eq use-package-verbose 'debug)
|
||||||
`(message ,(format "Compiling package %s" name-string)))
|
`(message ,(format "Compiling package %s" name-string)))
|
||||||
,(unless (plist-get args :no-require)
|
,(unless (plist-get args :no-require)
|
||||||
`(load ,name-string nil t)))))))))
|
`(require ',name-symbol)))))))))
|
||||||
|
|
||||||
;; Certain keywords imply :defer, if :demand was not specified.
|
;; Certain keywords imply :defer, if :demand was not specified.
|
||||||
(when (and (not (plist-member args :demand))
|
(when (and (not (plist-member args :demand))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue