Function: ede-want-file-p

ede-want-file-p is a byte-compiled function defined in source.el.gz.

Signature

(ede-want-file-p ARG &rest ARGS)

Implementations

((this ede-target) file) in `ede/base.el'.

Return non-nil if THIS target wants FILE.

((this ede-sourcecode) filename) in `ede/source.el'.

Return non-nil if sourcecode definition THIS will take FILENAME.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/source.el.gz
(cl-defmethod ede-want-file-p ((this ede-sourcecode) filename)
  "Return non-nil if sourcecode definition THIS will take FILENAME."
  (or (ede-want-file-source-p this filename)
      (ede-want-file-auxiliary-p this filename)))