Variable: large-file-warning-threshold

large-file-warning-threshold is a customizable variable defined in files.el.gz.

Value

10000000

Documentation

Maximum size of file above which a confirmation is requested.

When nil, never request confirmation.

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

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom large-file-warning-threshold 10000000
  "Maximum size of file above which a confirmation is requested.
When nil, never request confirmation."
  :group 'files
  :group 'find-file
  :version "22.1"
  :type '(choice integer (const :tag "Never request confirmation" nil)))