diff options
| -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 |