Variable: allout-enable-file-variable-adjustment

allout-enable-file-variable-adjustment is a customizable and buffer-local variable defined in allout.el.gz.

Documentation

If non-nil, some allout outline actions edit Emacs local file var text.

This can range from changes to existing entries, addition of new ones, and creation of a new local variables section when necessary.

Emacs file variables adjustments are also inhibited if enable-local-variables is nil.

Operations potentially causing edits include allout encryption routines. For details, see allout-toggle-current-subtree-encryptions docstring.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ + Miscellaneous customization

;;;_  = allout-enable-file-variable-adjustment
(defcustom allout-enable-file-variable-adjustment t
  "If non-nil, some allout outline actions edit Emacs local file var text.

This can range from changes to existing entries, addition of new ones,
and creation of a new local variables section when necessary.

Emacs file variables adjustments are also inhibited if `enable-local-variables'
is nil.

Operations potentially causing edits include allout encryption routines.
For details, see `allout-toggle-current-subtree-encryption's docstring."
  :type 'boolean
  :local t
  :group 'allout)