Function: ede-want-any-auxiliary-files-p

ede-want-any-auxiliary-files-p is a byte-compiled function defined in source.el.gz.

Signature

(ede-want-any-auxiliary-files-p ARG &rest ARGS)

Implementations

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

Return non-nil if THIS will accept any aux files in FILENAMES.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/source.el.gz
(cl-defmethod ede-want-any-auxiliary-files-p ((this ede-sourcecode) filenames)
  "Return non-nil if THIS will accept any aux files in FILENAMES."
  (let (found)
    (while (and (not found) filenames)
      (setq found (ede-want-file-auxiliary-p this (pop filenames))))
    found))