diff options
| author | Chong Yidong | 2009-09-05 23:17:15 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-09-05 23:17:15 +0000 |
| commit | e969cc5dd769869ab18ca662ce85fd0a90c1def2 (patch) | |
| tree | 9d35ee738b2472e7353d00a39aaf81d21e2a5762 | |
| parent | ad75612d6ad13ce60a69679be41930d91cc24919 (diff) | |
| download | emacs-e969cc5dd769869ab18ca662ce85fd0a90c1def2.tar.gz emacs-e969cc5dd769869ab18ca662ce85fd0a90c1def2.zip | |
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.
| -rw-r--r-- | lisp/cedet/semantic/dep.el | 10 |
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." | |||
| 115 | ;;; PATH MANAGEMENT | 115 | ;;; PATH MANAGEMENT |
| 116 | ;; | 116 | ;; |
| 117 | ;; Some fcns to manage paths for a give mode. | 117 | ;; Some fcns to manage paths for a give mode. |
| 118 | ;;;###autoload | ||
| 118 | (defun semantic-add-system-include (dir &optional mode) | 119 | (defun semantic-add-system-include (dir &optional mode) |
| 119 | "Add a system include DIR to path for MODE. | 120 | "Add a system include DIR to path for MODE. |
| 120 | Modifies a mode-local version of `semantic-dependency-system-include-path'. | 121 | Modifies a mode-local version of `semantic-dependency-system-include-path'. |
| @@ -131,6 +132,7 @@ Changes made by this function are not persistent." | |||
| 131 | semantic-dependency-system-include-path value)) | 132 | semantic-dependency-system-include-path value)) |
| 132 | )) | 133 | )) |
| 133 | 134 | ||
| 135 | ;;;###autoload | ||
| 134 | (defun semantic-remove-system-include (dir &optional mode) | 136 | (defun semantic-remove-system-include (dir &optional mode) |
| 135 | "Add a system include DIR to path for MODE. | 137 | "Add a system include DIR to path for MODE. |
| 136 | Modifies a mode-local version of`semantic-dependency-system-include-path'. | 138 | Modifies a mode-local version of`semantic-dependency-system-include-path'. |
| @@ -151,6 +153,7 @@ Changes made by this function are not persistent." | |||
| 151 | value)) | 153 | value)) |
| 152 | )) | 154 | )) |
| 153 | 155 | ||
| 156 | ;;;###autoload | ||
| 154 | (defun semantic-reset-system-include (&optional mode) | 157 | (defun semantic-reset-system-include (&optional mode) |
| 155 | "Reset the system include list to empty for MODE. | 158 | "Reset the system include list to empty for MODE. |
| 156 | Modifies a mode-local version of | 159 | Modifies a mode-local version of |
| @@ -161,6 +164,7 @@ Modifies a mode-local version of | |||
| 161 | nil)) | 164 | nil)) |
| 162 | ) | 165 | ) |
| 163 | 166 | ||
| 167 | ;;;###autoload | ||
| 164 | (defun semantic-customize-system-include-path (&optional mode) | 168 | (defun semantic-customize-system-include-path (&optional mode) |
| 165 | "Customize the include path for this `major-mode'. | 169 | "Customize the include path for this `major-mode'. |
| 166 | To create a customizable include path for a major MODE, use the | 170 | To create a customizable include path for a major MODE, use the |
| @@ -221,4 +225,10 @@ provided mode, not from the current major mode." | |||
| 221 | 225 | ||
| 222 | (provide 'semantic/dep) | 226 | (provide 'semantic/dep) |
| 223 | 227 | ||
| 228 | ;; Local variables: | ||
| 229 | ;; generated-autoload-file: "loaddefs.el" | ||
| 230 | ;; generated-autoload-feature: semantic/loaddefs | ||
| 231 | ;; generated-autoload-load-name: "semantic/dep" | ||
| 232 | ;; End: | ||
| 233 | |||
| 224 | ;;; semantic/dep.el ends here | 234 | ;;; semantic/dep.el ends here |