Function: ede-target-buffers

ede-target-buffers is a byte-compiled function defined in ede.el.gz.

Signature

(ede-target-buffers TARGET)

Documentation

Return a list of buffers that are controlled by TARGET.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(defun ede-target-buffers (target)
  "Return a list of buffers that are controlled by TARGET."
  (let ((bl (buffer-list))
	(pl nil))
    (while bl
      (with-current-buffer (car bl)
	(if (if (listp ede-object)
		(memq target ede-object)
	      (eq ede-object target))
	    (setq pl (cons (car bl) pl))))
      (setq bl (cdr bl)))
    pl))