Function: project-external-roots

project-external-roots is a byte-compiled function defined in project.el.gz.

Signature

(project-external-roots PROJECT)

Documentation

Return the list of external roots for PROJECT.

It's the list of directories outside of the project that are still related to it. If the project deals with source code then, depending on the languages used, this list should include the headers search path, load path, class path, and so on.

Implementations

(project-external-roots (PROJECT (head vc))) in `project.el'.

Undocumented

(project-external-roots PROJECT) in `project.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;; FIXME: Add MODE argument, like in `ede-source-paths'?
(cl-defgeneric project-external-roots (_project)
  "Return the list of external roots for PROJECT.

It's the list of directories outside of the project that are
still related to it.  If the project deals with source code then,
depending on the languages used, this list should include the
headers search path, load path, class path, and so on."
  nil)