From 6488784ee05f232b1dbcbd9e84b408bffc9ce192 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Wed, 17 Apr 2024 02:52:55 -0700 Subject: [PATCH] Fix startup eln chache redirect --- early-init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/early-init.el b/early-init.el index 083b6bc..4a7055e 100644 --- a/early-init.el +++ b/early-init.el @@ -4,6 +4,6 @@ ;; Move native compile cache to follor no-littering conventions (when (fboundp 'startup-redirect-eln-cache) - (startup-redirect-eln-cache - (convert-standard-filename - (expand-file-name "var/eln-cache/" user-emacs-directory)))) + (startup-redirect-eln-cache "var/eln-cache/")) + +;;; early-init.el ends here