Function: ede-proj-find-compiler

ede-proj-find-compiler is a byte-compiled function defined in proj-comp.el.gz.

Signature

(ede-proj-find-compiler COMPILERS SOURCETYPE)

Documentation

Return a compiler from the list COMPILERS that will compile SOURCETYPE.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/proj-comp.el.gz
;;; Queries
(defun ede-proj-find-compiler (compilers sourcetype)
  "Return a compiler from the list COMPILERS that will compile SOURCETYPE."
  (while (and compilers
	      (not (member sourcetype (oref (car compilers) sourcetype))))
    (setq compilers (cdr compilers)))
  (car-safe compilers))