summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/dep.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-09-05 23:17:15 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-09-05 23:17:15 +0000
commite969cc5dd769869ab18ca662ce85fd0a90c1def2 (patch)
tree9d35ee738b2472e7353d00a39aaf81d21e2a5762 /lisp/cedet/semantic/dep.el
parentad75612d6ad13ce60a69679be41930d91cc24919 (diff)
downloademacs-e969cc5dd769869ab18ca662ce85fd0a90c1def2.tar.gz
lisp/cedet/semantic/dep.el: Add local vars for autoloading.
(semantic-add-system-include, semantic-remove-system-include (semantic-reset-system-include) (semantic-customize-system-include-path): Autoload.
Diffstat (limited to 'lisp/cedet/semantic/dep.el')
-rw-r--r--lisp/cedet/semantic/dep.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/cedet/semantic/dep.el b/lisp/cedet/semantic/dep.el
index aa860c13764..d4b17744d06 100644
--- a/lisp/cedet/semantic/dep.el
+++ b/lisp/cedet/semantic/dep.el
@@ -115,6 +115,7 @@ keep semantic data structures up to date."
;;; PATH MANAGEMENT
;;
;; Some fcns to manage paths for a give mode.
+;;;###autoload
(defun semantic-add-system-include (dir &optional mode)
"Add a system include DIR to path for MODE.
Modifies a mode-local version of `semantic-dependency-system-include-path'.
@@ -131,6 +132,7 @@ Changes made by this function are not persistent."
semantic-dependency-system-include-path value))
))
+;;;###autoload
(defun semantic-remove-system-include (dir &optional mode)
"Add a system include DIR to path for MODE.
Modifies a mode-local version of`semantic-dependency-system-include-path'.
@@ -151,6 +153,7 @@ Changes made by this function are not persistent."
value))
))
+;;;###autoload
(defun semantic-reset-system-include (&optional mode)
"Reset the system include list to empty for MODE.
Modifies a mode-local version of
@@ -161,6 +164,7 @@ Modifies a mode-local version of
nil))
)
+;;;###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
@@ -221,4 +225,10 @@ provided mode, not from the current major mode."
(provide 'semantic/dep)
+;; Local variables:
+;; generated-autoload-file: "loaddefs.el"
+;; generated-autoload-feature: semantic/loaddefs
+;; generated-autoload-load-name: "semantic/dep"
+;; End:
+
;;; semantic/dep.el ends here