Variable: gnus-emphasize-whitespace-regexp

gnus-emphasize-whitespace-regexp is a customizable variable defined in gnus-art.el.gz.

Value

"^[     ]+\\|[  ]*\n"

Documentation

A regexp to describe whitespace which should not be emphasized.

Typical values are "^[ \\t]+\\\\|[ \\t]*\\n" and "[ \\t]+\\\\|[ \\t]*\\n". The former avoids underlining of leading and trailing whitespace, and the latter avoids underlining any whitespace at all.

This variable was added, or its default value changed, in Emacs 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-emphasize-whitespace-regexp "^[ \t]+\\|[ \t]*\n"
  "A regexp to describe whitespace which should not be emphasized.
Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\".
The former avoids underlining of leading and trailing whitespace,
and the latter avoids underlining any whitespace at all."
  :version "21.1"
  :group 'gnus-article-emphasis
  :type 'regexp)