Function: ede-want-any-source-files-p
ede-want-any-source-files-p is a byte-compiled function defined in
source.el.gz.
Signature
(ede-want-any-source-files-p ARG &rest ARGS)
Implementations
((this ede-sourcecode) filenames) in `ede/source.el'.
Return non-nil if THIS will accept any source files in FILENAMES.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/source.el.gz
(cl-defmethod ede-want-any-source-files-p ((this ede-sourcecode) filenames)
"Return non-nil if THIS will accept any source files in FILENAMES."
(let (found)
(while (and (not found) filenames)
(setq found (ede-want-file-source-p this (pop filenames))))
found))