Variable: mail-re-regexps
mail-re-regexps is a customizable variable defined in
mail-utils.el.gz.
Value
("RE" "RÉ\\.?" "FWD?" "رد" "回复" "回覆" "SV" "Antw\\.?" "VS" "REF"
"AW" "ΑΠ" "ΣΧΕΤ" "השב" "Vá" "R" "RIF" "BLS" "RES" "Odp" "YNT" "ATB")
Documentation
List of localized "Re" abbreviations in various languages.
Each component can be a regular expression or a simple string. Matching
is done case-insensitively. Used to initialize the legacy
rmail-re-abbrevs and message-subject-re-regexp user options.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/mail-utils.el.gz
;;;###autoload
(defcustom mail-re-regexps
'("RE" "R\u00c9\\.?" "FWD?" "رد" "回复" "回覆" "SV" "Antw\\.?"
"VS" "REF" "AW" "ΑΠ" "ΣΧΕΤ" "השב" "Vá" "R" "RIF" "BLS" "RES"
"Odp" "YNT" "ATB")
"List of localized \"Re\" abbreviations in various languages.
Each component can be a regular expression or a simple string. Matching
is done case-insensitively. Used to initialize the legacy
`rmail-re-abbrevs' and `message-subject-re-regexp' user options."
:type '(repeat regexp)
:set (lambda (sym val)
(custom-set-default sym val)
(dolist (sym '(rmail-re-abbrevs
message-subject-re-regexp))
(when (get sym 'standard-value)
(custom-reevaluate-setting sym))))
:group 'mail
:version "31.1")