summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2019-06-20 17:45:52 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2019-06-20 17:45:52 -0400
commit5f485a2fc04053163a0f0b4a3019a141b8735068 (patch)
tree29f29c687c8c8bf567aced62e6b0ce862036945d
parent8bccbb9889abfb5d9ca2127df6c788d9b992af37 (diff)
downloademacs-5f485a2fc04053163a0f0b4a3019a141b8735068.tar.gz
* lisp/vc/vc-dir.el (vc-dir-search): Avoid `eval`.
-rw-r--r--lisp/vc/vc-dir.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el
index 7af1e0db4ff..41b1087ee59 100644
--- a/lisp/vc/vc-dir.el
+++ b/lisp/vc/vc-dir.el
@@ -804,7 +804,9 @@ For marked directories, use the files displayed from those directories.
Stops when a match is found.
To continue searching for next match, use command \\[tags-loop-continue]."
(interactive "sSearch marked files (regexp): ")
- (tags-search regexp '(mapcar 'car (vc-dir-marked-only-files-and-states))))
+ (tags-search regexp
+ (lambda ()
+ (mapcar #'car (vc-dir-marked-only-files-and-states)))))
(defun vc-dir-query-replace-regexp (from to &optional delimited)
"Do `query-replace-regexp' of FROM with TO, on all marked files.