# HG changeset patch # User Glenn Morris # Date 1237151370 0 # Node ID 735c4ccc513f1d1653b9ee9539e3942d74322453 # Parent b842dd348c1d546585c9685cb5cd8a68531f15ba (rmail-font-lock-keywords): Treat "Mail-Reply-To" like "Reply-To". diff -r b842dd348c1d -r 735c4ccc513f lisp/ChangeLog --- a/lisp/ChangeLog Sun Mar 15 21:07:39 2009 +0000 +++ b/lisp/ChangeLog Sun Mar 15 21:09:30 2009 +0000 @@ -1,3 +1,12 @@ +2009-03-15 Glenn Morris + + * mail/sendmail.el (mail-yank-prefix): Doc fix. + (mail-mode-map): Only enable the "Cite Original" menu-item when + appropriate. Standardize the text used for other headers re hyphens. + + * mail/rmail.el (rmail-font-lock-keywords): Treat "Mail-Reply-To" + like "Reply-To". + 2009-03-15 Chong Yidong * minibuffer.el (completion-styles): Add emacs22 completion style diff -r b842dd348c1d -r 735c4ccc513f lisp/mail/rmail.el --- a/lisp/mail/rmail.el Sun Mar 15 21:07:39 2009 +0000 +++ b/lisp/mail/rmail.el Sun Mar 15 21:09:30 2009 +0000 @@ -771,7 +771,8 @@ (cite-suffix (concat cite-prefix "0-9_.@-`'\""))) (list '("^\\(From\\|Sender\\|Resent-From\\):" . 'rmail-header-name) - '("^Reply-To:.*$" . 'rmail-header-name) + '("^\\(Mail-\\)?Reply-To:.*$" . 'rmail-header-name) + ;; FIXME Mail-Followup-To should probably be here too. '("^Subject:" . 'rmail-header-name) '("^X-Spam-Status:" . 'rmail-header-name) '("^\\(To\\|Apparently-To\\|Cc\\|Newsgroups\\):"