Variable: enable-local-eval

enable-local-eval is a customizable variable defined in files.el.gz.

Value

maybe

Documentation

Control processing of the "variable" eval in a file's local variables.

The value can be t, nil or something else. A value of t means obey eval variables. A value of nil means ignore them; anything else means query.

View in manual

Probably introduced at or before Emacs version 19.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom enable-local-eval 'maybe
  "Control processing of the \"variable\" `eval' in a file's local variables.
The value can be t, nil or something else.
A value of t means obey `eval' variables.
A value of nil means ignore them; anything else means query."
  :risky t
  :type '(choice (const :tag "Obey" t)
		 (const :tag "Ignore" nil)
		 (other :tag "Query" other))
  :group 'find-file)