Mercurial > emacs
changeset 104460:e135e518dc20
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.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 05 Sep 2009 23:17:15 +0000 |
parents | d0d9dd0539ad |
children | c89254e41c98 |
files | lisp/cedet/semantic/dep.el |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/cedet/semantic/dep.el Sat Sep 05 23:13:51 2009 +0000 +++ b/lisp/cedet/semantic/dep.el Sat Sep 05 23:17:15 2009 +0000 @@ -115,6 +115,7 @@ ;;; 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 @@ 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 @@ 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 @@ 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 @@ (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