Function: ede-ecb-project-paths

ede-ecb-project-paths is a byte-compiled function defined in ede.el.gz.

Signature

(ede-ecb-project-paths)

Documentation

Return a list of all paths for all active EDE projects.

This functions is meant for use with ECB.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(defun ede-ecb-project-paths ()
  "Return a list of all paths for all active EDE projects.
This functions is meant for use with ECB."
  (let ((p ede-projects)
	(d nil))
    (while p
      (setq d (cons (file-name-directory (oref (car p) file))
		    d)
	    p (cdr p)))
    d))