about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-02-28 11:43:04 +0000
committerDavid Morgan <djm_uk@protonmail.com>2022-02-28 11:43:04 +0000
commit618b4a9a7d69cefe6e3af87993610eab47b31a79 (patch)
tree8f434610e4b94c9383a4f1b81fd3e1e5ee067882 /.emacs.d
parent0f8a519ab7c9f51767774ecbb7f773841dd1da30 (diff)
downloaddotfiles-618b4a9a7d69cefe6e3af87993610eab47b31a79.tar.gz
Fix upgrade function
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-packages.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-packages.el b/.emacs.d/lisp/init-packages.el
index 09b9a08..9eea07e 100644
--- a/.emacs.d/lisp/init-packages.el
+++ b/.emacs.d/lisp/init-packages.el
@@ -34,13 +34,13 @@
 (use-package epl
   :config
   ;; TODO make a copy of the built-in check for system packages work instead
-  (defvar my/system-packages '("vterm"))
+  (defvar my/system-packages '(vterm))
   (defun my/upgrade-packages ()
     (interactive)
     (epl-refresh)
     (when-let ((upgrades (seq-filter (lambda (u)
                                        (not (member
-                                             (epl-package-name (epl-upgrade-available  u))
+                                             (epl-package-name (epl-upgrade-available u))
                                              my/system-packages)))
                                      (epl-find-upgrades))))
       ;; TODO why doesn't this work?