1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

Fix a void-function error

* lisp/dired-aux.el (dired-do-find-regexp):
Require 'xref' (bug#35352).
This commit is contained in:
Dmitry Gutov 2019-05-30 20:29:29 +03:00
parent a01693a45c
commit a0c7a640c2

View File

@ -2899,6 +2899,7 @@ directories.
REGEXP should use constructs supported by your local `grep' command."
(interactive "sSearch marked files (regexp): ")
(require 'grep)
(require 'xref)
(defvar grep-find-ignored-files)
(declare-function rgrep-find-ignored-directories "grep" (dir))
(let* ((files (dired-get-marked-files nil nil nil nil t))