Function: semanticdb-without-unloaded-file-searches
semanticdb-without-unloaded-file-searches is a macro defined in
fw.el.gz.
Signature
(semanticdb-without-unloaded-file-searches FORMS)
Documentation
Execute FORMS with unloaded removed from the current throttle.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/fw.el.gz
;;; Database restriction settings
;;
(defmacro semanticdb-without-unloaded-file-searches (forms)
"Execute FORMS with `unloaded' removed from the current throttle."
(declare (indent 1))
`(let ((semanticdb-find-default-throttle
(if (featurep 'semantic/db-find)
(remq 'unloaded semanticdb-find-default-throttle)
nil)))
,forms))