]> git.eshelyaron.com Git - emacs.git/commitdiff
* cedet/ede/system.el: Add local vars for autoloading.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 20 Sep 2009 22:08:24 +0000 (22:08 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 20 Sep 2009 22:08:24 +0000 (22:08 +0000)
(ede-vc-project-directory): Autoload.

lisp/ChangeLog
lisp/cedet/ede.el
lisp/cedet/ede/system.el

index 61a7be1f83babf27e210149443feb42b10280116..e876d2d6abb314736fada21cb015d66e9f7086ea 100644 (file)
@@ -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.
 
index 6cae8d62bae3bf16b12b6fc15a43700138c0607c..743e3548aa42ab04f1b24665e4b640f7e57a9b38 100644 (file)
@@ -1981,12 +1981,6 @@ Display the results as a debug list."
 ;;         (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.")
 
index e3699b19c246c871056a2cc7a8301e5ca4db251b..ad917cf6b1b3a87a17bbfc54e7331a6daaa8b86c 100644 (file)
@@ -126,6 +126,8 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
 ;;; 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 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
 
 (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