From 7d714b7531d8b91e458a288dd4d27d19c3e63d8d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 14 Aug 2019 22:36:19 -0400 Subject: [PATCH] Fix #1673: restore project-file-exists-p! macro --- core/autoload/projects.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/autoload/projects.el b/core/autoload/projects.el index 7e40ac058..364941ab5 100644 --- a/core/autoload/projects.el +++ b/core/autoload/projects.el @@ -23,12 +23,12 @@ ;;; Macros ;;;###autoload -(defun doom-project-file-exists-p (files) +(defmacro project-file-exists-p! (files) "Checks if the project has the specified FILES. Paths are relative to the project root, unless they start with ./ or ../ (in which case they're relative to `default-directory'). If they start with a slash, they are absolute." - (file-exists-p! files (doom-project-root))) + `(file-exists-p! ,files (doom-project-root))) ;;