diff options
| author | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-14 23:50:37 +0200 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-14 23:50:37 +0200 |
| commit | 0484b44ff90e762bbf50894489a4e3c62316caf0 (patch) | |
| tree | 81be6911078995bf7b6ee54c91312c2d63cb2cf0 /test/projectile-test.el | |
| parent | 18116c346e9a2b60f39507bde3c897be5660185c (diff) | |
Replace cl-lib sequence functions with seq.el equivalents
Migrate cl-remove-if-not → seq-filter, cl-remove-if → seq-remove,
cl-some → seq-some, cl-every → seq-every-p, cl-find-if → seq-find,
cl-mapcan → mapcan, cl-union → seq-union, cl-sort → seq-sort,
cl-case → pcase, and delete projectile-difference in favor of
seq-difference. Manual replacements for cl-notany, cl-typep, cl-incf,
cl-remove, and cl-subst.
cl-lib is still required for cl-defun, cl-defmethod, cl-loop, cl-letf,
and cl-flet*.
Diffstat (limited to 'test/projectile-test.el')
| -rw-r--r-- | test/projectile-test.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/projectile-test.el b/test/projectile-test.el index 2c97762..d896ba3 100644 --- a/test/projectile-test.el +++ b/test/projectile-test.el @@ -1064,7 +1064,7 @@ Just delegates OPERATION and ARGS for all operations except for`shell-command`'. (projectile-grep "hi"))) (expect 'compilation-start :to-have-been-called-with (concat "-type d \\( -path \\*/IG_DIR \\) -prune -o " - "\\! -type d \\( -name IG_FILE -o -name \\*IG_SUF \\) -prune -o " + "\\! -type d \\( -name \\*IG_SUF -o -name IG_FILE \\) -prune -o " "\\( -path ./GLOB_IG_DIR -o -path ./GLOB_IG_FILE \\) -prune -o ") 'grep-mode)))) (it "excludes project ignores" |
