Variable: semantic-dependency-system-include-path

semantic-dependency-system-include-path is a buffer-local variable defined in dep.el.gz.

Documentation

Defines the system include path.

This should be set with either defvar-mode-local, or with semantic-add-system-include.

For mode authors, use defcustom-mode-local-semantic-dependency-system-include-path to create a mode-specific variable to control this.

When searching for a file associated with a name found in a tag of class include, this path will be inspected for includes of type system. Some include tags are agnostic to this setting and will check both the project and system directories.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/dep.el.gz
(defvar-local semantic-dependency-system-include-path nil
  "Defines the system include path.
This should be set with either `defvar-mode-local', or with
`semantic-add-system-include'.

For mode authors, use
`defcustom-mode-local-semantic-dependency-system-include-path'
to create a mode-specific variable to control this.

When searching for a file associated with a name found in a tag of
class include, this path will be inspected for includes of type
`system'.  Some include tags are agnostic to this setting and will
check both the project and system directories.")