mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix #1673: restore project-file-exists-p! macro
This commit is contained in:
@ -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)))
|
||||
|
||||
|
||||
;;
|
||||
|
Reference in New Issue
Block a user