Function: semanticdb-database-sanity-check
semanticdb-database-sanity-check is an interactive and byte-compiled
function defined in db-debug.el.gz.
Signature
(semanticdb-database-sanity-check)
Documentation
Validate the current semantic database.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-debug.el.gz
(defun semanticdb-database-sanity-check ()
"Validate the current semantic database."
(interactive)
(let ((tables (semanticdb-get-database-tables
semanticdb-current-database)))
(while tables
(semanticdb-table-sanity-check (car tables))
(setq tables (cdr tables)))
))