summaryrefslogtreecommitdiff
path: root/lisp/cedet/ede/system.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-09-27 21:35:46 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-09-27 21:35:46 +0000
commita2095e2edba95e01f3be50ead7cc4b1c53bd40f3 (patch)
tree150cb59355fd83a2295dbaf07dec1f1a123a5f6f /lisp/cedet/ede/system.el
parent715f35a55d79aa04ed337f601082079d0b5a357f (diff)
downloademacs-a2095e2edba95e01f3be50ead7cc4b1c53bd40f3.tar.gz
* cedet/ede/system.el (ede-upload-html-documentation)
(ede-upload-distribution, ede-edit-web-page) (ede-web-browse-home): Autoload. * cedet/ede/proj-elisp.el: Add autoload for semantic-ede-proj-target-grammar. * cedet/semantic.el (navigate-menu): Show menu items only if semantic-mode is enabled. * cedet/ede.el: Remove comments. * cedet/cedet.el (cedet-menu-map): Minor doc fix. * cedet/semantic/grammar.el: * cedet/semantic/grammar-wy.el: * cedet/semantic/ede-grammar.el: New files. * cedet/semantic/db-mode.el (global-semanticdb-minor-mode): Define using define-minor-mode, so that the usual mode variable exists.
Diffstat (limited to 'lisp/cedet/ede/system.el')
-rw-r--r--lisp/cedet/ede/system.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/cedet/ede/system.el b/lisp/cedet/ede/system.el
index ad917cf6b1b..db2b9a2c9a4 100644
--- a/lisp/cedet/ede/system.el
+++ b/lisp/cedet/ede/system.el
@@ -31,7 +31,8 @@
;;; Code:
;;; Web/FTP site node.
-;;
+
+;;;###autoload
(defun ede-web-browse-home ()
"Browse the home page of the current project."
(interactive)
@@ -44,7 +45,7 @@
(browse-url home)
))
-
+;;;###autoload
(defun ede-edit-web-page ()
"Edit the web site for this project."
(interactive)
@@ -62,7 +63,7 @@
(error "No project file found")))
(find-file endfile)))
-
+;;;###autoload
(defun ede-upload-distribution ()
"Upload the current distribution to the correct location.
Use /user@ftp.site.com: file names for FTP sites.
@@ -95,6 +96,7 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
(message "Done uploading files...")
)
+;;;###autoload
(defun ede-upload-html-documentation ()
"Upload the current distributions documentation as HTML.
Use /user@ftp.site.com: file names for FTP sites.