Function: semanticdb-table-oob-sanity-check

semanticdb-table-oob-sanity-check is a byte-compiled function defined in db-debug.el.gz.

Signature

(semanticdb-table-oob-sanity-check CACHE)

Documentation

Validate that CACHE tags do not have any overlays in them.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-debug.el.gz
;;; Sanity Checks
;;

(defun semanticdb-table-oob-sanity-check (cache)
  "Validate that CACHE tags do not have any overlays in them."
  (while cache
    (when (overlayp (semantic-tag-overlay cache))
      (message "Tag %s has an erroneous overlay!"
	       (semantic-format-tag-summarize (car cache))))
    (semanticdb-table-oob-sanity-check
     (semantic-tag-components-with-overlays (car cache)))
    (setq cache (cdr cache))))