Variable: whitespace-line-column
whitespace-line-column is a customizable variable defined in
whitespace.el.gz.
Value
80
Documentation
Specify column beyond which the line is highlighted.
It must be an integer or nil. If nil, the fill-column variable value is
used.
Used when whitespace-style includes lines or lines-tail.
Source Code
;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defcustom whitespace-line-column 80
"Specify column beyond which the line is highlighted.
It must be an integer or nil. If nil, the `fill-column' variable value is
used.
Used when `whitespace-style' includes `lines' or `lines-tail'."
:type '(choice :tag "Line Length Limit"
(integer :tag "Line Length")
(const :tag "Use fill-column" nil))
:safe 'integerp
:group 'whitespace)