Function: ede-want-file-auxiliary-p
ede-want-file-auxiliary-p is a byte-compiled function defined in
source.el.gz.
Signature
(ede-want-file-auxiliary-p ARG &rest ARGS)
Implementations
((this ede-target) file) in `ede/proj.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-auxiliary-p ((this ede-sourcecode) filename)
"Return non-nil if THIS will take FILENAME as an auxiliary."
(let ((case-fold-search nil))
(and (slot-boundp this 'auxsourcepattern)
(oref this auxsourcepattern)
(string-match (oref this auxsourcepattern) filename))))