From e0385052a8004ec54a402c27357b1352840eb798 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 Aug 2022 20:44:16 +0200 Subject: [PATCH] fix: void-function file-name-concat on Emacs 27 Amend: 05b344a85209 --- lisp/doom.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom.el b/lisp/doom.el index 1047e6a77..6dbbefb5e 100644 --- a/lisp/doom.el +++ b/lisp/doom.el @@ -319,7 +319,7 @@ users).") ;; Don't store eln files in ~/.emacs.d/eln-cache (where they can easily be ;; deleted by 'doom upgrade'). ;; REVIEW Use `startup-redirect-eln-cache' when 28 support is dropped - (add-to-list 'native-comp-eln-load-path (file-name-concat doom-cache-dir "eln/"))) + (add-to-list 'native-comp-eln-load-path (expand-file-name "eln/" doom-cache-dir))) ;;