diff options
| author | Robert Pluim | 2025-02-14 11:56:19 +0100 |
|---|---|---|
| committer | Robert Pluim | 2025-02-14 16:22:05 +0100 |
| commit | b967891088db359fe16ce8317441e930651fb2ea (patch) | |
| tree | 547ab8f556ee2312749de949825fc0269e6149d2 | |
| parent | 7c22f13ba394d47992a0df3678d23b5bd3da3820 (diff) | |
| download | emacs-b967891088db359fe16ce8317441e930651fb2ea.tar.gz emacs-b967891088db359fe16ce8317441e930651fb2ea.zip | |
Correct docstrings describing "Re" alternatives.
* lisp/mail/mail-utils.el (mail-re-regexps): Use "Re", not "Re:".
* lisp/mail/rmail.el (rmail-re-abbrevs): Here also.
| -rw-r--r-- | lisp/mail/mail-utils.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index 5ddcb4b7686..d7748ffe6aa 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el | |||
| @@ -63,7 +63,7 @@ also the To field, unless this would leave an empty To field." | |||
| 63 | '("RE" "R\u00c9\\.?" "FWD?" "رد" "回复" "回覆" "SV" "Antw\\.?" | 63 | '("RE" "R\u00c9\\.?" "FWD?" "رد" "回复" "回覆" "SV" "Antw\\.?" |
| 64 | "VS" "REF" "AW" "ΑΠ" "ΣΧΕΤ" "השב" "Vá" "R" "RIF" "BLS" "RES" | 64 | "VS" "REF" "AW" "ΑΠ" "ΣΧΕΤ" "השב" "Vá" "R" "RIF" "BLS" "RES" |
| 65 | "Odp" "YNT" "ATB") | 65 | "Odp" "YNT" "ATB") |
| 66 | "List of localized \"Re:\" abbreviations in various languages. | 66 | "List of localized \"Re\" abbreviations in various languages. |
| 67 | Each component can be a regular expression or a simple string. Matching | 67 | Each component can be a regular expression or a simple string. Matching |
| 68 | is done case-insensitively. Used to initialize the legacy | 68 | is done case-insensitively. Used to initialize the legacy |
| 69 | `rmail-re-abbrevs' and `message-subject-re-regexp' user options." | 69 | `rmail-re-abbrevs' and `message-subject-re-regexp' user options." |
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 4b93f379c72..0d657aea8a1 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -537,7 +537,7 @@ Examples: | |||
| 537 | (concat "\\(" | 537 | (concat "\\(" |
| 538 | (string-join mail-re-regexps "\\|") | 538 | (string-join mail-re-regexps "\\|") |
| 539 | "\\)") | 539 | "\\)") |
| 540 | "Regexp with localized \"Re:\" abbreviations in various languages. | 540 | "Regexp with localized \"Re\" abbreviations in various languages. |
| 541 | Matching is done case-insensitively. | 541 | Matching is done case-insensitively. |
| 542 | Initialized from `mail-re-regexps', which is easier to customize." | 542 | Initialized from `mail-re-regexps', which is easier to customize." |
| 543 | :set-after '(mail-re-regexps) | 543 | :set-after '(mail-re-regexps) |