about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
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?