Variable: user-emacs-directory-warning

user-emacs-directory-warning is a customizable variable defined in files.el.gz.

Value

t

Documentation

Non-nil means warn if unable to access or create user-emacs-directory.

Set this to nil at your own risk, as it might lead to data loss when Emacs tries to write something to a non-existent or inaccessible location.

This variable was added, or its default value changed, in Emacs 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom user-emacs-directory-warning t
  "Non-nil means warn if unable to access or create `user-emacs-directory'.
Set this to nil at your own risk, as it might lead to data loss
when Emacs tries to write something to a non-existent or
inaccessible location."
  :type 'boolean
  :group 'initialization
  :version "24.4")