Variable: semantic-dependency-include-path
semantic-dependency-include-path is a buffer-local variable defined in
dep.el.gz.
Documentation
Defines the include path used when searching for files.
This should be a list of directories to search which is specific to the file being included.
If semantic-dependency-tag-file is overridden for a given
language, this path is most likely ignored.
The above function, regardless of being overridden, caches the
located dependency file location in the tag property
dependency-file. If you override this function, you do not
need to implement your own cache. Each time the buffer is fully
reparsed, the cache will be reset.
TODO: use ffap.el to locate such items?
NOTE: Obsolete this, or use as special user
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/dep.el.gz
;;; Code:
(defvar-local semantic-dependency-include-path nil
"Defines the include path used when searching for files.
This should be a list of directories to search which is specific
to the file being included.
If `semantic-dependency-tag-file' is overridden for a given
language, this path is most likely ignored.
The above function, regardless of being overridden, caches the
located dependency file location in the tag property
`dependency-file'. If you override this function, you do not
need to implement your own cache. Each time the buffer is fully
reparsed, the cache will be reset.
TODO: use ffap.el to locate such items?
NOTE: Obsolete this, or use as special user")