Variable: ede-project-directory-hash
ede-project-directory-hash is a variable defined in files.el.gz.
Value
#s(hash-table test equal)
Documentation
A hash of directory names and associated EDE objects.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
;;; DIRECTORY HASH
;;
;; The directory hash matches expanded directory names to already detected
;; projects. By hashing projects to directories, we can detect projects in
;; places we have been before much more quickly.
(defvar ede-project-directory-hash (make-hash-table
;; Note on test. Can we compare inodes or something?
:test 'equal)
"A hash of directory names and associated EDE objects.")