aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2019-05-30 20:29:29 +0300
committerDmitry Gutov2019-05-30 20:29:29 +0300
commita0c7a640c2ddfc35b2458f505903839fa8a716d3 (patch)
treebf2bb9c346a31ea111ac26f0392b8846a5caf6c9
parenta01693a45c632373ef6bfb6dfc8c6270e7b7f7cf (diff)
downloademacs-a0c7a640c2ddfc35b2458f505903839fa8a716d3.tar.gz
emacs-a0c7a640c2ddfc35b2458f505903839fa8a716d3.zip
Fix a void-function error
* lisp/dired-aux.el (dired-do-find-regexp): Require 'xref' (bug#35352).
-rw-r--r--lisp/dired-aux.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 51749acb217..41fcd062fb8 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -2899,6 +2899,7 @@ directories.
2899REGEXP should use constructs supported by your local `grep' command." 2899REGEXP should use constructs supported by your local `grep' command."
2900 (interactive "sSearch marked files (regexp): ") 2900 (interactive "sSearch marked files (regexp): ")
2901 (require 'grep) 2901 (require 'grep)
2902 (require 'xref)
2902 (defvar grep-find-ignored-files) 2903 (defvar grep-find-ignored-files)
2903 (declare-function rgrep-find-ignored-directories "grep" (dir)) 2904 (declare-function rgrep-find-ignored-directories "grep" (dir))
2904 (let* ((files (dired-get-marked-files nil nil nil nil t)) 2905 (let* ((files (dired-get-marked-files nil nil nil nil t))