Function: semantic-reset-system-include
semantic-reset-system-include is an interactive and byte-compiled
function defined in dep.el.gz.
Signature
(semantic-reset-system-include &optional MODE)
Documentation
Reset the system include list to empty for MODE.
Modifies a mode-local version of
semantic-dependency-system-include-path.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/dep.el.gz
;;;###autoload
(defun semantic-reset-system-include (&optional mode)
"Reset the system include list to empty for MODE.
Modifies a mode-local version of
`semantic-dependency-system-include-path'."
(interactive)
(eval `(setq-mode-local ,(or mode major-mode)
semantic-dependency-system-include-path
nil)
t))