Variable: hack-dir-local-get-variables-functions

hack-dir-local-get-variables-functions is a variable defined in files.el.gz.

Value

(hack-dir-local--get-variables)

Documentation

Special hook to compute the set of dir-local variables.

Every function is called without arguments and should return either a cons of the form (DIR . ALIST) or a (possibly empty) list of such conses, where ALIST is an alist of (VAR . VAL) settings. DIR should be a string (a directory name) and is used to obey safe-local-variable-directories. This hook is run after the major mode has been setup.

View in manual

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defvar hack-dir-local-get-variables-functions
  (list #'hack-dir-local--get-variables)
  "Special hook to compute the set of dir-local variables.
Every function is called without arguments and should return either
a cons of the form (DIR . ALIST) or a (possibly empty) list of such conses,
where ALIST is an alist of (VAR . VAL) settings.
DIR should be a string (a directory name) and is used to obey
`safe-local-variable-directories'.
This hook is run after the major mode has been setup.")