Function: semanticdb-find-adebug-scanned-includes
semanticdb-find-adebug-scanned-includes is an interactive and
byte-compiled function defined in db-find.el.gz.
Signature
(semanticdb-find-adebug-scanned-includes)
Documentation
Translate the current path, then display the lost includes.
Examines the variable semanticdb-find-lost-includes.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-adebug-scanned-includes ()
"Translate the current path, then display the lost includes.
Examines the variable `semanticdb-find-lost-includes'."
(interactive)
(require 'data-debug)
(semanticdb-find-translate-path nil nil)
(let ((scanned semanticdb-find-scanned-include-tags)
(data-debug-thing-alist
(cons
'((lambda (thing) (and (consp thing)
(symbolp (car thing))
(memq (car thing)
'(scanned scanned-no-recurse
lost duplicate))))
. semanticdb-find-adebug-insert-scanned-tag-cons)
data-debug-thing-alist))
)
(if (not scanned)
(message "There are no includes scanned %s"
(buffer-name))
(data-debug-new-buffer "*SEMANTICDB scanned-includes ADEBUG*")
(data-debug-insert-stuff-list scanned "*")
)))