Function: semanticdb-find-throttle-active-p

semanticdb-find-throttle-active-p is a byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-throttle-active-p ACCESS-TYPE)

Documentation

Non-nil if ACCESS-TYPE is an active throttle type.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-throttle-active-p (access-type)
  "Non-nil if ACCESS-TYPE is an active throttle type."
  (or (memq access-type semanticdb-find-default-throttle)
      (eq access-type 'file)
      (and (eq access-type 'local)
	   (memq 'project semanticdb-find-default-throttle))
      ))