Variable: dir-locals-directory-cache

dir-locals-directory-cache is a variable defined in files.el.gz.

Value

(("/root/.emacs.d/elpa/org-9.8.2/" /root/\.emacs\.d/elpa/org-9\.8\.2/
  (27103 58019 0 0)))

Documentation

List of cached directory roots for directory-local variable classes.

Each element in this list has the form (DIR CLASS MTIME). DIR is the name of the directory. CLASS is the name of a variable class (a symbol). MTIME is the recorded modification time of the directory-local variables file associated with this entry. This time is a Lisp timestamp (the same format as current-time), and is used to test whether the cache entry is still valid. Alternatively, MTIME can be nil, which means the entry is always considered valid.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defvar dir-locals-directory-cache '()
  "List of cached directory roots for directory-local variable classes.
Each element in this list has the form (DIR CLASS MTIME).
DIR is the name of the directory.
CLASS is the name of a variable class (a symbol).
MTIME is the recorded modification time of the directory-local
variables file associated with this entry.  This time is a Lisp
timestamp (the same format as `current-time'), and is
used to test whether the cache entry is still valid.
Alternatively, MTIME can be nil, which means the entry is always
considered valid.")