Variable: ede-inode-directory-hash
ede-inode-directory-hash is a variable defined in files.el.gz.
Value
#s(hash-table test equal data
("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/"
13766636
"/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/"
13778944
"/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/"
13778943
"/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/"
13778942
"/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/"
13778941 "/nix/store/" 13778940 "/nix/" 13778939 "/"
13775334))
Documentation
A hash of directory names and inodes.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
(file-name-directory (expand-file-name (oref this file)))) ;; )
;; Why INODEs?
;; An inode represents a unique ID that transcends symlinks, hardlinks, etc.
;; so when we cache an inode in a project, and hash directories to inodes, we
;; can avoid costly filesystem queries and regex matches.
(defvar ede-inode-directory-hash (make-hash-table
;; Note on test. Can we compare inodes or something?
:test 'equal)
"A hash of directory names and inodes.")