aboutsummaryrefslogtreecommitdiff
path: root/projectile.el
diff options
context:
space:
mode:
Diffstat (limited to 'projectile.el')
-rw-r--r--projectile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/projectile.el b/projectile.el
index 574c5bd..1f52080 100644
--- a/projectile.el
+++ b/projectile.el
@@ -1546,7 +1546,7 @@ IGNORED-DIRECTORIES may optionally be provided."
(deleted (unless (and projectile-git-use-fd projectile-fd-executable)
(projectile-git-deleted-files directory))))
(if deleted
- (seq-remove (lambda (f) (member f deleted)) files)
+ (cl-remove-if (lambda (f) (member f deleted)) files)
files)))
(t (projectile-files-via-ext-command directory (projectile-get-ext-command vcs))))))