Variable: flyspell-prog-text-faces
flyspell-prog-text-faces is a customizable variable defined in
flyspell.el.gz.
Value
(font-lock-string-face font-lock-comment-face font-lock-doc-face)
Documentation
Faces corresponding to text in programming-mode buffers.
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
;;*---------------------------------------------------------------------*/
;;* Programming mode */
;;*---------------------------------------------------------------------*/
(defcustom flyspell-prog-text-faces
'(font-lock-string-face font-lock-comment-face font-lock-doc-face)
"Faces corresponding to text in programming-mode buffers."
:type '(set (const font-lock-string-face)
(const font-lock-comment-face)
(const font-lock-doc-face))
:version "28.1")