Function: ede-linux-find-matching-target
ede-linux-find-matching-target is a byte-compiled function defined in
linux.el.gz.
Signature
(ede-linux-find-matching-target CLASS DIR TARGETS)
Documentation
Find a target that is a CLASS and is in DIR in the list of TARGETS.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/linux.el.gz
;;; TARGET MANAGEMENT
;;
(defun ede-linux-find-matching-target (class dir targets)
"Find a target that is a CLASS and is in DIR in the list of TARGETS."
(let ((match nil))
(dolist (T targets)
(when (and (object-of-class-p T class)
(string= (oref T path) dir))
(setq match T)
))
match))