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/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/lisp/"
	       13393898
	       "/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/"
	       13780665
	       "/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/"
	       13780664
	       "/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/"
	       13780663
	       "/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/"
	       13780662 "/nix/store/" 13780661 "/nix/" 13780660 "/"
	       13775426))

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.")