summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-05-22 15:30:36 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-05-22 15:30:48 -0700
commit934b78260f587b892d6bfe32909733c179cfc3ef (patch)
tree7f2c308d63376a898bfff96981e776086b43a5c6
parent4f8c6edbf5fe4a290b4029111d586f4b042cb8c0 (diff)
downloaddotfiles-934b78260f587b892d6bfe32909733c179cfc3ef.tar.gz
fix adding to eshell-modules-list
-rw-r--r--.emacs.d/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index fe046e18..7a633ac7 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -1460,7 +1460,7 @@ don't consider windows satisfying the predicate EXCLUDE."
(define-key eshell-mode-map "\C-z\C-r" #'spw/eshell-cd-project-root))
;; Work around Emacs bugs #54976 and #54977.
-(with-eval-after-load 'eshell-module
+(with-eval-after-load 'esh-module
(dolist (module '(eshell-elecslash eshell-tramp eshell-xtra))
(when (locate-library (format "em-%s" (substring (symbol-name module) 7)))
(add-to-list 'eshell-modules-list module))))