Variable: whitespace--page-delimiters-keyword
whitespace--page-delimiters-keyword is a variable defined in
whitespace.el.gz.
Value
((#[257 "\301\302P\303#\207"
[page-delimiter re-search-forward "\n" t] 5
("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/whitespace.elc"
. 23135)]
0
(prog1 nil
(put-text-property (match-beginning 0) (1- (match-end 0)) 'display
" ")
(add-text-properties (match-beginning 0) (match-end 0)
'(face whitespace-page-delimiter
display-line-numbers-disable t)))))
Documentation
Used to add page delimiters keywords to whitespace-font-lock-keywords.
Source Code
;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defvar whitespace--page-delimiters-keyword
`((,(lambda (bound)
(re-search-forward (concat page-delimiter "\n") bound t))
0
(prog1 nil
(put-text-property (match-beginning 0) (1- (match-end 0)) 'display " ")
(add-text-properties (match-beginning 0) (match-end 0)
'( face whitespace-page-delimiter
display-line-numbers-disable t)))))
"Used to add page delimiters keywords to `whitespace-font-lock-keywords'.")