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

(ede-want-file-auxiliary-p (THIS ede-target) FILE) in `ede/proj.el'.

Return non-nil if THIS target wants FILE.

(ede-want-file-auxiliary-p (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))))