about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-11-22 12:58:54 +0000
committerDavid Morgan <djm_uk@protonmail.com>2024-11-22 12:58:54 +0000
commit7e910aab85b1d9fc1e0cceb54238a01a9bf16e76 (patch)
tree5e398781d6236bac1343aafddef4e9f8d8d82019 /.emacs.d/lisp
parent680f3182b683fd764c24d056ec468b810bd5e88e (diff)
downloaddotfiles-7e910aab85b1d9fc1e0cceb54238a01a9bf16e76.tar.gz
Prevent elpaca from being reloaded on update
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/init-packages.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-packages.el b/.emacs.d/lisp/init-packages.el
index ecc225e..28b0e6a 100644
--- a/.emacs.d/lisp/init-packages.el
+++ b/.emacs.d/lisp/init-packages.el
@@ -169,7 +169,7 @@ using this command."
   (cl-letf (((symbol-function 'yes-or-no-p) (cl-constantly t)))
     (when (not (or (memq id elpaca-ignored-dependencies)
                    ;; TODO why aren't xref and project already in the list?
-                   (memq id '(xref project perspective))))
+                   (memq id '(xref project perspective elpaca))))
       (+elpaca-reload-package id))))
 
 ;; https://github.com/radian-software/radian/blob/e3aad124c8e0cc870ed09da8b3a4905d01e49769/emacs/radian.el#L352