aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-09-20 22:08:24 +0000
committerChong Yidong2009-09-20 22:08:24 +0000
commit0f008bd3108015ab288cef3cc31e033305f997e0 (patch)
tree319e37ea1df352bfd0c9479812c45a35b627535a
parent447a30f3655f011c51c07682f23a0483b7ab3c4f (diff)
downloademacs-0f008bd3108015ab288cef3cc31e033305f997e0.tar.gz
emacs-0f008bd3108015ab288cef3cc31e033305f997e0.zip
* cedet/ede/system.el: Add local vars for autoloading.
(ede-vc-project-directory): Autoload.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/cedet/ede.el6
-rw-r--r--lisp/cedet/ede/system.el8
3 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 61a7be1f83b..e876d2d6abb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-09-20 Chong Yidong <cyd@stupidchicken.com> 12009-09-20 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * cedet/ede/system.el: Add local vars for autoloading.
4 (ede-vc-project-directory): Autoload.
5
3 * cedet/ede/pmake.el (ede-proj-makefile-create): Require 6 * cedet/ede/pmake.el (ede-proj-makefile-create): Require
4 ede/srecode. 7 ede/srecode.
5 8
diff --git a/lisp/cedet/ede.el b/lisp/cedet/ede.el
index 6cae8d62bae..743e3548aa4 100644
--- a/lisp/cedet/ede.el
+++ b/lisp/cedet/ede.el
@@ -1981,12 +1981,6 @@ Display the results as a debug list."
1981;; (def-edebug-spec ede-with-projectfile 1981;; (def-edebug-spec ede-with-projectfile
1982;; (form def-body)))) 1982;; (form def-body))))
1983 1983
1984;; (autoload 'ede-update-version "ede-util"
1985;; "Update the version of the current project." t)
1986
1987;; (autoload 'ede-vc-project-directory "ede-system" t
1988;; "Run `vc-directory' on the the current project.")
1989
1990;; (autoload 'ede-web-browse-home "ede-system" t 1984;; (autoload 'ede-web-browse-home "ede-system" t
1991;; "Web browse this project's home page.") 1985;; "Web browse this project's home page.")
1992 1986
diff --git a/lisp/cedet/ede/system.el b/lisp/cedet/ede/system.el
index e3699b19c24..ad917cf6b1b 100644
--- a/lisp/cedet/ede/system.el
+++ b/lisp/cedet/ede/system.el
@@ -126,6 +126,8 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
126;;; Version Control 126;;; Version Control
127;; 127;;
128;; Do a few nice things with Version control systems. 128;; Do a few nice things with Version control systems.
129
130;;;###autoload
129(defun ede-vc-project-directory () 131(defun ede-vc-project-directory ()
130 "Run `vc-dir' on the current project." 132 "Run `vc-dir' on the current project."
131 (interactive) 133 (interactive)
@@ -134,4 +136,10 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
134 136
135(provide 'ede/system) 137(provide 'ede/system)
136 138
139;; Local variables:
140;; generated-autoload-file: "loaddefs.el"
141;; generated-autoload-feature: ede/loaddefs
142;; generated-autoload-load-name: "ede/system"
143;; End:
144
137;;; ede/system.el ends here 145;;; ede/system.el ends here