Variable: goto-address-fontify-maximum-size
goto-address-fontify-maximum-size is a customizable variable defined
in goto-addr.el.gz.
Value
131072
Documentation
Maximum size of file in which to fontify and/or highlight URLs (in bytes).
A value of t means there is no limit--fontify regardless of the size.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/goto-addr.el.gz
(defcustom goto-address-fontify-maximum-size (* 128 1024)
"Maximum size of file in which to fontify and/or highlight URLs (in bytes).
A value of t means there is no limit--fontify regardless of the size."
:type '(choice (integer :tag "Maximum size")
(const :tag "No limit" t))
:version "31.1")