diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-08-31 02:16:34 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-08-31 02:16:34 +0000 |
commit | 978c25c6a0b0d88568abb91c871363758c678da0 (patch) | |
tree | d1c11f92c2edc3509678acf5f4207b9971e5ef6f /lisp/cedet/semantic/edit.el | |
parent | 691a065ecb6920eb73f2a72229b8c803202a00b6 (diff) | |
download | emacs-978c25c6a0b0d88568abb91c871363758c678da0.tar.gz |
cedet/semantic/chart.el: Don't require semantic/find.
cedet/semantic/complete.el: Don't require semantic/find.
cedet/semantic/decorate.el: Require semantic/tag-file.
(semantic-set-tag-folded-isearch): Require semantic/find.
cedet/semantic/dep.el: Change semantic--dependency-find-file-on-path
into a macro, to avoid compiler warning.
Defvar ede-minor-mode and ede-object.
Declare ede-system-include-path.
cedet/semantic/doc.el: Require semantic/tag-file and semantic/find.
cedet/semantic/edit.el: Require semantic/find and semantic/format.
cedet/semantic/find.el: Defvar semantic-case-fold.
Require semantic.
(semantic-find-tags-external-children-of-type): Require semantic/sort.
(semantic-find-tags-by-scope-protection-default): Require semantic/tag-ls.
cedet/semantic/format.el: Require semantic/tag-ls.
eval-when-compile semantic/find.
(semantic-format-tag-name): Move up to avoid compiler error.
(semantic-format-tag-prototype): Move up to avoid compiler error.
(semantic--format-tag-parent-tree): Require semantic/tag-file.
(semantic-format-tag-short-doc-default): Require semantic/doc.
Diffstat (limited to 'lisp/cedet/semantic/edit.el')
-rw-r--r-- | lisp/cedet/semantic/edit.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index af3b23a3600..580d7ba253d 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el @@ -1,4 +1,4 @@ -;;; semantic-edit.el --- Edit Management for Semantic +;;; semantic/edit.el --- Edit Management for Semantic ;;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, ;;; 2007, 2008, 2009 Free Software Foundation, Inc. @@ -59,7 +59,8 @@ ;; (require 'semantic) -;; (require 'working) +(require 'semantic/find) +(require 'semantic/format) ;;; Code: (defvar semantic-after-partial-cache-change-hook nil @@ -962,4 +963,4 @@ lost if not transferred into NEWTAG." (provide 'semantic/edit) -;;; semantic-edit.el ends here +;;; semantic/edit.el ends here |