From: Juri Linkov Date: Mon, 15 Jul 2019 22:12:12 +0000 (+0300) Subject: * lisp/vc/vc-dir.el (vc-dir-search): Remove lambda. X-Git-Tag: emacs-27.0.90~1883 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6253541c76a449780815f4a8fd75a9aa70b931ae;p=emacs.git * lisp/vc/vc-dir.el (vc-dir-search): Remove lambda. (Bug#31578) Thanks to Dmitry Gutov --- diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index b823f2b3930..9a6f6bb6874 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el @@ -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.