Variable: whitespace-empty-at-bob-regexp
whitespace-empty-at-bob-regexp is a customizable variable defined in
whitespace.el.gz.
Value
"\\`\\(\\([ ]*\n\\)+\\)"
Documentation
Specify regexp for empty lines at beginning of buffer.
Used when whitespace-style includes empty.
Source Code
;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defcustom whitespace-empty-at-bob-regexp "\\`\\(\\([ \t]*\n\\)+\\)"
"Specify regexp for empty lines at beginning of buffer.
Used when `whitespace-style' includes `empty'."
:type '(regexp :tag "Empty Lines At Beginning Of Buffer")
:group 'whitespace)