Function: ede-locate-file-in-project

ede-locate-file-in-project is a byte-compiled function defined in locate.el.gz.

Signature

(ede-locate-file-in-project ARG &rest ARGS)

Implementations

(ede-locate-file-in-project (LOC ede-locate-base) FILESUBSTRING) in `ede/locate.el'.

Locate with LOC occurrences of FILESUBSTRING. Searches are done under the current root of the EDE project that created this EDE locate object.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/locate.el.gz
(cl-defmethod ede-locate-file-in-project ((loc ede-locate-base)
				       filesubstring
				       )
  "Locate with LOC occurrences of FILESUBSTRING.
Searches are done under the current root of the EDE project
that created this EDE locate object."
  (let ((ans (ede-locate-file-in-project-impl loc filesubstring))
	)
    (oset loc file filesubstring)
    (oset loc lastanswer ans)
    ans))