diff options
author | William Carroll <wpcarro@gmail.com> | 2020-09-02T14·01+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-09-02T14·01+0100 |
commit | d1ee51746111c2456cdd9b9f4416e2356db8e8dc (patch) | |
tree | da3c6d618755cb5b90f9020e32f0fd13c76ee3bb /emacs/.emacs.d/wpc/irc.el | |
parent | f9be81b23e2f59853c64fa02ae447effc718fea8 (diff) |
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`.
Diffstat (limited to 'emacs/.emacs.d/wpc/irc.el')
-rw-r--r-- | emacs/.emacs.d/wpc/irc.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/irc.el b/emacs/.emacs.d/wpc/irc.el index ce6f0cfa313b..7ce679cd5008 100644 --- a/emacs/.emacs.d/wpc/irc.el +++ b/emacs/.emacs.d/wpc/irc.el @@ -24,6 +24,7 @@ (require 'macros) (require '>) (require 'password-store) +(require 'general) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Configuration |