diff options
| author | Basil L. Contovounesios | 2020-06-21 14:31:16 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2020-06-21 14:33:16 +0100 |
| commit | a4d3897d8f0caa54be1e1d081651ed6640b7f25e (patch) | |
| tree | f7a4b924761d9adf33b8c617885641448fe3cc8b | |
| parent | f18b035763785ffa9d8e27f3ec2be183b741502e (diff) | |
| download | emacs-a4d3897d8f0caa54be1e1d081651ed6640b7f25e.tar.gz 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.
| -rw-r--r-- | lisp/progmodes/project.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/xref.el | 6 | ||||
| -rw-r--r-- | test/lisp/emacs-lisp/package-tests.el | 5 |
3 files changed, 7 insertions, 8 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. | |||
| 195 | 195 | ||
| 196 | The default implementation uses `find-program'. PROJECT is used | 196 | The default implementation uses `find-program'. PROJECT is used |
| 197 | to find the list of ignores for each directory." | 197 | to find the list of ignores for each directory." |
| 198 | (cl-mapcan | 198 | (mapcan |
| 199 | (lambda (dir) | 199 | (lambda (dir) |
| 200 | (project--files-in-directory dir | 200 | (project--files-in-directory dir |
| 201 | (project--dir-ignores project dir))) | 201 | (project--dir-ignores project dir))) |
| @@ -351,7 +351,7 @@ backend implementation of `project-external-roots'.") | |||
| 351 | (list (project-root project)))) | 351 | (list (project-root project)))) |
| 352 | 352 | ||
| 353 | (cl-defmethod project-files ((project (head vc)) &optional dirs) | 353 | (cl-defmethod project-files ((project (head vc)) &optional dirs) |
| 354 | (cl-mapcan | 354 | (mapcan |
| 355 | (lambda (dir) | 355 | (lambda (dir) |
| 356 | (let (backend) | 356 | (let (backend) |
| 357 | (if (and (file-equal-p dir (cdr project)) | 357 | (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. | |||
| 264 | The default implementation uses `semantic-symref-tool-alist' to | 264 | The default implementation uses `semantic-symref-tool-alist' to |
| 265 | find a search tool; by default, this uses \"find | grep\" in the | 265 | find a search tool; by default, this uses \"find | grep\" in the |
| 266 | `project-current' roots." | 266 | `project-current' roots." |
| 267 | (cl-mapcan | 267 | (mapcan |
| 268 | (lambda (dir) | 268 | (lambda (dir) |
| 269 | (xref-references-in-directory identifier dir)) | 269 | (xref-references-in-directory identifier dir)) |
| 270 | (let ((pr (project-current t))) | 270 | (let ((pr (project-current t))) |
| @@ -1383,8 +1383,8 @@ Such as the current syntax table and the applied syntax properties." | |||
| 1383 | (let (xref--last-file-buffer | 1383 | (let (xref--last-file-buffer |
| 1384 | (tmp-buffer (generate-new-buffer " *xref-temp*"))) | 1384 | (tmp-buffer (generate-new-buffer " *xref-temp*"))) |
| 1385 | (unwind-protect | 1385 | (unwind-protect |
| 1386 | (cl-mapcan (lambda (hit) (xref--collect-matches hit regexp tmp-buffer)) | 1386 | (mapcan (lambda (hit) (xref--collect-matches hit regexp tmp-buffer)) |
| 1387 | hits) | 1387 | hits) |
| 1388 | (kill-buffer tmp-buffer)))) | 1388 | (kill-buffer tmp-buffer)))) |
| 1389 | 1389 | ||
| 1390 | (defun xref--collect-matches (hit regexp tmp-buffer) | 1390 | (defun xref--collect-matches (hit regexp tmp-buffer) |
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index fecabba40f5..cb06dd4cce3 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el | |||
| @@ -175,9 +175,8 @@ | |||
| 175 | 175 | ||
| 176 | (defun package-test-suffix-matches (base suffix-list) | 176 | (defun package-test-suffix-matches (base suffix-list) |
| 177 | "Return file names matching BASE concatenated with each item in SUFFIX-LIST" | 177 | "Return file names matching BASE concatenated with each item in SUFFIX-LIST" |
| 178 | (cl-mapcan | 178 | (mapcan (lambda (item) (file-expand-wildcards (concat base item))) |
| 179 | (lambda (item) (file-expand-wildcards (concat base item))) | 179 | suffix-list)) |
| 180 | suffix-list)) | ||
| 181 | 180 | ||
| 182 | (defvar tar-parse-info) | 181 | (defvar tar-parse-info) |
| 183 | (declare-function tar-header-name "tar-mode" (cl-x) t) ; defstruct | 182 | (declare-function tar-header-name "tar-mode" (cl-x) t) ; defstruct |