1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* lisp/vc/vc-dir.el (vc-dir-search): Remove lambda.

(Bug#31578) Thanks to Dmitry Gutov <dgutov@yandex.ru>
This commit is contained in:
Juri Linkov 2019-07-16 01:12:12 +03:00
parent 0746a9e275
commit 6253541c76

View file

@ -837,8 +837,7 @@ 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
(lambda ()
(mapcar #'car (vc-dir-marked-only-files-and-states)))))
(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.