summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2020-06-21 14:31:16 +0100
committerBasil L. Contovounesios <contovob@tcd.ie>2020-06-21 14:33:16 +0100
commita4d3897d8f0caa54be1e1d081651ed6640b7f25e (patch)
treef7a4b924761d9adf33b8c617885641448fe3cc8b /lisp
parentf18b035763785ffa9d8e27f3ec2be183b741502e (diff)
downloademacs-a4d3897d8f0caa54be1e1d081651ed6640b7f25e.tar.gz
emacs-a4d3897d8f0caa54be1e1d081651ed6640b7f25e.tar.bz2
emacs-a4d3897d8f0caa54be1e1d081651ed6640b7f25e.zip
Replace some uses of cl-mapcan with mapcan
* lisp/progmodes/project.el (project-files, project-files): * lisp/progmodes/xref.el (xref-backend-references) (xref--convert-hits): * test/lisp/emacs-lisp/package-tests.el (package-test-strip-version): Replace cl-mapcan with equivalent calls to mapcan.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/project.el4
-rw-r--r--lisp/progmodes/xref.el6
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 74495cf07a4..8f6301c6020 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -195,7 +195,7 @@ subset of the project root and external roots.
The default implementation uses `find-program'. PROJECT is used
to find the list of ignores for each directory."
- (cl-mapcan
+ (mapcan
(lambda (dir)
(project--files-in-directory dir
(project--dir-ignores project dir)))
@@ -351,7 +351,7 @@ backend implementation of `project-external-roots'.")
(list (project-root project))))
(cl-defmethod project-files ((project (head vc)) &optional dirs)
- (cl-mapcan
+ (mapcan
(lambda (dir)
(let (backend)
(if (and (file-equal-p dir (cdr project))
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index 5b5fb4bc47a..3e3a37f6da5 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -264,7 +264,7 @@ be found, return nil.
The default implementation uses `semantic-symref-tool-alist' to
find a search tool; by default, this uses \"find | grep\" in the
`project-current' roots."
- (cl-mapcan
+ (mapcan
(lambda (dir)
(xref-references-in-directory identifier dir))
(let ((pr (project-current t)))
@@ -1383,8 +1383,8 @@ Such as the current syntax table and the applied syntax properties."
(let (xref--last-file-buffer
(tmp-buffer (generate-new-buffer " *xref-temp*")))
(unwind-protect
- (cl-mapcan (lambda (hit) (xref--collect-matches hit regexp tmp-buffer))
- hits)
+ (mapcan (lambda (hit) (xref--collect-matches hit regexp tmp-buffer))
+ hits)
(kill-buffer tmp-buffer))))
(defun xref--collect-matches (hit regexp tmp-buffer)