From 5155f4aa7880c265ff8ca0c2cde011d749e57223 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 19 Aug 2023 15:57:32 -0500 Subject: [PATCH] fix(lib): unquote base-directory in project-file-exists-p! Fix: #7356 Amend: b1cc71906322 --- lisp/lib/projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/lib/projects.el b/lisp/lib/projects.el index 061dad7d8..ce7964421 100644 --- a/lisp/lib/projects.el +++ b/lisp/lib/projects.el @@ -34,7 +34,7 @@ The project's root is determined by `projectile', starting from BASE-DIRECTORY (defaults to `default-directory'). FILES are paths relative to the project root, unless they begin with a slash." - `(file-exists-p! ,files (doom-project-root base-directory))) + `(file-exists-p! ,files (doom-project-root ,base-directory))) ;;