Function: semanticdb-find-incomplete-cache-entries-p

semanticdb-find-incomplete-cache-entries-p is a byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-incomplete-cache-entries-p CACHE)

Documentation

Are there any incomplete entries in CACHE?

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-incomplete-cache-entries-p (cache)
  "Are there any incomplete entries in CACHE?"
  (let ((ans nil))
    (dolist (tab cache)
      (when (and (cl-typep tab 'semanticdb-table)
		 (not (number-or-marker-p (oref tab pointmax))))
	(setq ans t))
      )
    ans))