Mercurial > emacs
changeset 104503:c433f076710b
* cedet/ede/system.el: Add local vars for autoloading.
(ede-vc-project-directory): Autoload.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 20 Sep 2009 22:08:24 +0000 |
parents | cdbbb89893d5 |
children | dec9e1cf2ce9 |
files | lisp/ChangeLog lisp/cedet/ede.el lisp/cedet/ede/system.el |
diffstat | 3 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Sep 20 22:05:17 2009 +0000 +++ b/lisp/ChangeLog Sun Sep 20 22:08:24 2009 +0000 @@ -1,5 +1,8 @@ 2009-09-20 Chong Yidong <cyd@stupidchicken.com> + * cedet/ede/system.el: Add local vars for autoloading. + (ede-vc-project-directory): Autoload. + * cedet/ede/pmake.el (ede-proj-makefile-create): Require ede/srecode.
--- a/lisp/cedet/ede.el Sun Sep 20 22:05:17 2009 +0000 +++ b/lisp/cedet/ede.el Sun Sep 20 22:08:24 2009 +0000 @@ -1981,12 +1981,6 @@ ;; (def-edebug-spec ede-with-projectfile ;; (form def-body)))) -;; (autoload 'ede-update-version "ede-util" -;; "Update the version of the current project." t) - -;; (autoload 'ede-vc-project-directory "ede-system" t -;; "Run `vc-directory' on the the current project.") - ;; (autoload 'ede-web-browse-home "ede-system" t ;; "Web browse this project's home page.")
--- a/lisp/cedet/ede/system.el Sun Sep 20 22:05:17 2009 +0000 +++ b/lisp/cedet/ede/system.el Sun Sep 20 22:08:24 2009 +0000 @@ -126,6 +126,8 @@ ;;; Version Control ;; ;; Do a few nice things with Version control systems. + +;;;###autoload (defun ede-vc-project-directory () "Run `vc-dir' on the current project." (interactive) @@ -134,4 +136,10 @@ (provide 'ede/system) +;; Local variables: +;; generated-autoload-file: "loaddefs.el" +;; generated-autoload-feature: ede/loaddefs +;; generated-autoload-load-name: "ede/system" +;; End: + ;;; ede/system.el ends here