Require general.el for packages that depend on it
Since I'm calling `(require 'general)` in `wpc-package.el`, which gets called at the beginning of my `init.el` file, all sub-modules have `general`. I originally wanted this, but I'm beginning to rethink that preference. After `script.el` broke my CI because of a missing `general` dependency, I'm fixing it for `buffer.el` and all other modules that consume `general`.
This commit is contained in:
parent
f9be81b23e
commit
d1ee517461
12 changed files with 32 additions and 0 deletions
|
|
@ -25,6 +25,8 @@
|
|||
(package-install 'use-package))
|
||||
(eval-when-compile
|
||||
(require 'use-package))
|
||||
;; TODO: Consider removing this, since I'm requiring general.el in individual
|
||||
;; modules.
|
||||
(use-package general)
|
||||
|
||||
(provide 'wpc-package)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue