diff options
| author | Chong Yidong | 2010-09-29 21:41:13 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-09-29 21:41:13 -0400 |
| commit | 5d2e937703a5ccc2b3c731fe227915c0d8bc8315 (patch) | |
| tree | 91e3ea1557a8e07223602c9172c11af482a36c22 | |
| parent | ac73b1faea8c6c16e2f8c528e15cf4241855316f (diff) | |
| download | emacs-5d2e937703a5ccc2b3c731fe227915c0d8bc8315.tar.gz emacs-5d2e937703a5ccc2b3c731fe227915c0d8bc8315.zip | |
Fix more CEDET require statements.
* semantic/bovine/el.el:
* semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode):
Fix require statements.
| -rw-r--r-- | lisp/cedet/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/bovine/el.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/mru-bookmark.el | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index 73761b4ee98..c0d96e795cc 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-09-30 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * semantic/bovine/el.el: | ||
| 4 | * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode): | ||
| 5 | Fix require statements. | ||
| 6 | |||
| 1 | 2010-09-29 Chong Yidong <cyd@stupidchicken.com> | 7 | 2010-09-29 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 8 | ||
| 3 | * semantic/tag.el (semantic-tag-version): Bump to 2.0. | 9 | * semantic/tag.el (semantic-tag-version): Bump to 2.0. |
diff --git a/lisp/cedet/semantic/bovine/el.el b/lisp/cedet/semantic/bovine/el.el index 5b5a5660b7d..ed1f74c590f 100644 --- a/lisp/cedet/semantic/bovine/el.el +++ b/lisp/cedet/semantic/bovine/el.el | |||
| @@ -958,7 +958,7 @@ ELisp variables can be pretty long, so track this one too.") | |||
| 958 | (add-hook 'lisp-mode-hook 'semantic-default-elisp-setup) | 958 | (add-hook 'lisp-mode-hook 'semantic-default-elisp-setup) |
| 959 | 959 | ||
| 960 | (eval-after-load "semanticdb" | 960 | (eval-after-load "semanticdb" |
| 961 | '(require 'semanticdb-el) | 961 | '(require 'semantic/db-el) |
| 962 | ) | 962 | ) |
| 963 | 963 | ||
| 964 | (provide 'semantic/bovine/el) | 964 | (provide 'semantic/bovine/el) |
diff --git a/lisp/cedet/semantic/mru-bookmark.el b/lisp/cedet/semantic/mru-bookmark.el index 1982f81cbad..2a6ac8f9b10 100644 --- a/lisp/cedet/semantic/mru-bookmark.el +++ b/lisp/cedet/semantic/mru-bookmark.el | |||
| @@ -246,7 +246,7 @@ been edited, and you can re-visit them with \\[semantic-mrub-switch-tags]." | |||
| 246 | :group 'semantic | 246 | :group 'semantic |
| 247 | :group 'semantic-modes | 247 | :group 'semantic-modes |
| 248 | :type 'boolean | 248 | :type 'boolean |
| 249 | :require 'semantic-util-modes | 249 | :require 'semantic/util-modes |
| 250 | :initialize 'custom-initialize-default | 250 | :initialize 'custom-initialize-default |
| 251 | :set (lambda (sym val) | 251 | :set (lambda (sym val) |
| 252 | (global-semantic-mru-bookmark-mode (if val 1 -1)))) | 252 | (global-semantic-mru-bookmark-mode (if val 1 -1)))) |