Function: ede-want-file-source-p
ede-want-file-source-p is a byte-compiled function defined in
source.el.gz.
Signature
(ede-want-file-source-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 THIS will take FILENAME as an auxiliary.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/source.el.gz
(cl-defmethod ede-want-file-source-p ((this ede-sourcecode) filename)
"Return non-nil if THIS will take FILENAME as an auxiliary."
(let ((case-fold-search nil))
(string-match (oref this sourcepattern) filename)))