Function: ede-project-buffers
ede-project-buffers is a byte-compiled function defined in ede.el.gz.
Signature
(ede-project-buffers PROJECT)
Documentation
Return a list of all active buffers controlled by PROJECT.
This includes buffers controlled by a specific target of PROJECT.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
;;; Project mapping
;;
(defun ede-project-buffers (project)
"Return a list of all active buffers controlled by PROJECT.
This includes buffers controlled by a specific target of PROJECT."
(let ((bl (buffer-list))
(pl nil))
(while bl
(with-current-buffer (car bl)
(when (and ede-object (ede-find-target project (car bl)))
(setq pl (cons (car bl) pl))))
(setq bl (cdr bl)))
pl))