# HG changeset patch # User Chong Yidong # Date 1253484504 0 # Node ID c433f076710bce779c22b9b138da0651997ff27b # Parent cdbbb89893d50aa9e61fd8c517f172c3d09ced6a * cedet/ede/system.el: Add local vars for autoloading. (ede-vc-project-directory): Autoload. diff -r cdbbb89893d5 -r c433f076710b lisp/ChangeLog --- 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 + * 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. diff -r cdbbb89893d5 -r c433f076710b lisp/cedet/ede.el --- 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.") diff -r cdbbb89893d5 -r c433f076710b lisp/cedet/ede/system.el --- 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