diff options
| author | Chong Yidong | 2009-08-30 21:16:39 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-08-30 21:16:39 +0000 |
| commit | aa8724aeadb56751cb464fd5ebbf5f2e631fd3fa (patch) | |
| tree | a3f4e2cd8ee9249f924d413e7c38e21a4a0bc204 /lisp/cedet/semantic/db-debug.el | |
| parent | ec0528188392b677b63aec579e5ef456e025b9b5 (diff) | |
| download | emacs-aa8724aeadb56751cb464fd5ebbf5f2e631fd3fa.tar.gz emacs-aa8724aeadb56751cb464fd5ebbf5f2e631fd3fa.zip | |
cedet/cedet.el (cedet-packages): Bump srecode version.
cedet/data-debug.el: Require `ring' for use of ring-length.
cedet/semantic.el (semantic-repeat-parse-whole-stream): Check
semantic-working-type before updating progress reporter.
cedet/semantic/adebug.el: Fix file header.
cedet/semantic/analyze.el: eval-when-compile semantic/find, for
semantic-find-tags-by-name. Declare semanticdb-strip-find-results and
semanticdb-find-tags-by-name.
cedet/semantic/chart.el: Require semantic/find, semantic/db-mode,
semantic/db-typecache, and semantic/scope.
cedet/semantic/complete.el: Declare
semantic-displayor-focus-abstract-child-p function (needed as the
semantic-displayor-focus-abstract class is defined only after used).
Move semantic-complete-inline-custom-type and
semantic-complete-inline-analyzer-displayor-class variable definitions
up, before they are used, to avoid compiler warning.
Require semantic/decorate, semantic/tag-file, eieio-opt, and
semantic/analyze/complete.
cedet/semantic/ctxt.el: Require semantic/find. Don't
eval-when-compile semantic/db
(semantic-get-local-variables): Use Emacs' built-in progress reporter
instead of working-status-forms.
cedet/semantic/db-debug.el: Require data-debug, semantic/db-mode, and
semantic/format.
cedet/semantic/db-ebrowse.el: Require semantic/db-mode, semantic/find,
semantic/sort, data-debug
(semanticdb-create-database): Require semantic/dep for
semantic-add-system-include.
(semanticdb-table-ebrowse, semanticdb-project-database-ebrowse): Move
class definitions near top of file, before they are used, to avoid
compiler warnings.
(semanticdb-ebrowse-add-tree-to-table): Use split-string.
Diffstat (limited to 'lisp/cedet/semantic/db-debug.el')
| -rw-r--r-- | lisp/cedet/semantic/db-debug.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/db-debug.el b/lisp/cedet/semantic/db-debug.el index 6db1cbfaae9..52ae605f6a0 100644 --- a/lisp/cedet/semantic/db-debug.el +++ b/lisp/cedet/semantic/db-debug.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; db-debug.el --- Extra level debugging routines for Semantic | 1 | ;;; semantic/db-debug.el --- Extra level debugging routines for Semantic |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 2008, 2009 Free Software Foundation, Inc. | 3 | ;;; Copyright (C) 2008, 2009 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -24,7 +24,10 @@ | |||
| 24 | ;; Various routines for debugging SemanticDB issues, or viewing | 24 | ;; Various routines for debugging SemanticDB issues, or viewing |
| 25 | ;; semanticdb state. | 25 | ;; semanticdb state. |
| 26 | 26 | ||
| 27 | (require 'data-debug) | ||
| 27 | (require 'semantic/db) | 28 | (require 'semantic/db) |
| 29 | (require 'semantic/db-mode) | ||
| 30 | (require 'semantic/format) | ||
| 28 | 31 | ||
| 29 | ;;; Code: | 32 | ;;; Code: |
| 30 | ;; | 33 | ;; |
| @@ -105,4 +108,5 @@ | |||
| 105 | 108 | ||
| 106 | 109 | ||
| 107 | (provide 'semantic/db-debug) | 110 | (provide 'semantic/db-debug) |
| 108 | ;;; semanticdb-debug.el ends here | 111 | |
| 112 | ;;; semantic/db-debug.el ends here | ||