Function: semanticdb-find-adebug-lost-includes

semanticdb-find-adebug-lost-includes is an interactive and byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-adebug-lost-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
;;;###autoload
(defun semanticdb-find-adebug-lost-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 ((lost semanticdb-find-lost-includes)
	)

    (if (not lost)
	(message "There are no unknown includes for %s"
		 (buffer-name))

      (data-debug-new-buffer "*SEMANTICDB lost-includes ADEBUG*")
      ;; (data-debug-insert-tag-list lost "*")
      )))