diff options
| author | Chong Yidong | 2009-09-27 21:35:46 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-09-27 21:35:46 +0000 |
| commit | a2095e2edba95e01f3be50ead7cc4b1c53bd40f3 (patch) | |
| tree | 150cb59355fd83a2295dbaf07dec1f1a123a5f6f /lisp/cedet/ede | |
| parent | 715f35a55d79aa04ed337f601082079d0b5a357f (diff) | |
| download | emacs-a2095e2edba95e01f3be50ead7cc4b1c53bd40f3.tar.gz emacs-a2095e2edba95e01f3be50ead7cc4b1c53bd40f3.zip | |
* cedet/ede/system.el (ede-upload-html-documentation)old-branches/cedet-branch
(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')
| -rw-r--r-- | lisp/cedet/ede/proj-elisp.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/ede/system.el | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/cedet/ede/proj-elisp.el b/lisp/cedet/ede/proj-elisp.el index 068daae44de..1838bad00e0 100644 --- a/lisp/cedet/ede/proj-elisp.el +++ b/lisp/cedet/ede/proj-elisp.el | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | (require 'ede/pmake) | 29 | (require 'ede/pmake) |
| 30 | (require 'ede/pconf) | 30 | (require 'ede/pconf) |
| 31 | 31 | ||
| 32 | (autoload 'semantic-ede-proj-target-grammar "semantic/ede-grammar") | ||
| 33 | |||
| 32 | ;;; Code: | 34 | ;;; Code: |
| 33 | (defclass ede-proj-target-elisp (ede-proj-target-makefile) | 35 | (defclass ede-proj-target-elisp (ede-proj-target-makefile) |
| 34 | ((menu :initform nil) | 36 | ((menu :initform nil) |
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 @@ | |||
| 31 | ;;; Code: | 31 | ;;; Code: |
| 32 | 32 | ||
| 33 | ;;; Web/FTP site node. | 33 | ;;; Web/FTP site node. |
| 34 | ;; | 34 | |
| 35 | ;;;###autoload | ||
| 35 | (defun ede-web-browse-home () | 36 | (defun ede-web-browse-home () |
| 36 | "Browse the home page of the current project." | 37 | "Browse the home page of the current project." |
| 37 | (interactive) | 38 | (interactive) |
| @@ -44,7 +45,7 @@ | |||
| 44 | (browse-url home) | 45 | (browse-url home) |
| 45 | )) | 46 | )) |
| 46 | 47 | ||
| 47 | 48 | ;;;###autoload | |
| 48 | (defun ede-edit-web-page () | 49 | (defun ede-edit-web-page () |
| 49 | "Edit the web site for this project." | 50 | "Edit the web site for this project." |
| 50 | (interactive) | 51 | (interactive) |
| @@ -62,7 +63,7 @@ | |||
| 62 | (error "No project file found"))) | 63 | (error "No project file found"))) |
| 63 | (find-file endfile))) | 64 | (find-file endfile))) |
| 64 | 65 | ||
| 65 | 66 | ;;;###autoload | |
| 66 | (defun ede-upload-distribution () | 67 | (defun ede-upload-distribution () |
| 67 | "Upload the current distribution to the correct location. | 68 | "Upload the current distribution to the correct location. |
| 68 | Use /user@ftp.site.com: file names for FTP sites. | 69 | 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." | |||
| 95 | (message "Done uploading files...") | 96 | (message "Done uploading files...") |
| 96 | ) | 97 | ) |
| 97 | 98 | ||
| 99 | ;;;###autoload | ||
| 98 | (defun ede-upload-html-documentation () | 100 | (defun ede-upload-html-documentation () |
| 99 | "Upload the current distributions documentation as HTML. | 101 | "Upload the current distributions documentation as HTML. |
| 100 | Use /user@ftp.site.com: file names for FTP sites. | 102 | Use /user@ftp.site.com: file names for FTP sites. |