Variable: dir-local-variables-alist
dir-local-variables-alist is a buffer-local variable defined in
files.el.gz.
Documentation
Alist of directory-local variable settings in the current buffer.
Each element in this list has the form (VAR . VALUE), where VAR is a directory-local variable (a symbol) and VALUE is the value specified in .dir-locals.el. The actual value in the buffer may differ from VALUE, if it is changed by the major or minor modes, or by the user.
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defvar-local dir-local-variables-alist nil
"Alist of directory-local variable settings in the current buffer.
Each element in this list has the form (VAR . VALUE), where VAR
is a directory-local variable (a symbol) and VALUE is the value
specified in .dir-locals.el. The actual value in the buffer
may differ from VALUE, if it is changed by the major or minor modes,
or by the user.")