Variable: so-long-threshold
so-long-threshold is a customizable variable defined in so-long.el.gz.
Value
10000
Documentation
Maximum line length permitted before invoking so-long-function(var)/so-long-function(fun).
Line length is counted in either bytes or characters, depending on
so-long-predicate.
This is the only variable used to determine the presence of long lines if
the so-long-predicate function is so-long-statistics-excessive-p.
This variable was added, or its default value changed, in so-long version 1.1.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/so-long.el.gz
(defcustom so-long-threshold 10000
"Maximum line length permitted before invoking `so-long-function'.
Line length is counted in either bytes or characters, depending on
`so-long-predicate'.
This is the only variable used to determine the presence of long lines if
the `so-long-predicate' function is `so-long-statistics-excessive-p'."
:type 'integer
:package-version '(so-long . "1.1"))