Function: semantic-customize-system-include-path
semantic-customize-system-include-path is an autoloaded, interactive
and byte-compiled function defined in dep.el.gz.
Signature
(semantic-customize-system-include-path &optional MODE)
Documentation
Customize the include path for this major-mode.
To create a customizable include path for a major MODE, use the
macro defcustom-mode-local-semantic-dependency-system-include-path.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/dep.el.gz
;;;###autoload
(defun semantic-customize-system-include-path (&optional mode)
"Customize the include path for this `major-mode'.
To create a customizable include path for a major MODE, use the
macro `defcustom-mode-local-semantic-dependency-system-include-path'."
(interactive)
(let ((ips (get 'semantic-dependency-system-include-path
(or mode major-mode))))
;; Do we have one?
(when (not ips)
(error "There is no customizable includepath variable for %s"
(or mode major-mode)))
;; Customize it.
(customize-variable ips)))