Function: project--find-regexp-in-files

project--find-regexp-in-files is a byte-compiled function defined in project.el.gz.

Signature

(project--find-regexp-in-files REGEXP FILES)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defun project--find-regexp-in-files (regexp files)
  (unless files
    (user-error "Empty file list"))
  (let ((xrefs (xref-matches-in-files regexp files)))
    (unless xrefs
      (user-error "No matches for: %s" regexp))
    xrefs))