Variable: message-cite-level-function

message-cite-level-function is a customizable variable defined in message.el.gz.

Value

#[257 "\300\301\"\207"
      [cl-count 62]
      4 "\n\n(fn S)"]

Documentation

A function to determine the level of cited text.

The function accepts 1 parameter which is the matched prefix.

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

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-cite-level-function (lambda (s) (cl-count ?> s))
  "A function to determine the level of cited text.
The function accepts 1 parameter which is the matched prefix."
  :type 'function
  :version "27.1")