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/wpc-dired.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/wpc-dired.el')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-dired.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-dired.el b/emacs/.emacs.d/wpc/wpc-dired.el index f440c5272519..bd2805c7369c 100644 --- a/emacs/.emacs.d/wpc/wpc-dired.el +++ b/emacs/.emacs.d/wpc/wpc-dired.el @@ -16,6 +16,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'macros) +(require 'general) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Configuration |