Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8d48f3f9
Commit
8d48f3f9
authored
May 29, 2013
by
Glenn Morris
Browse files
* gnus/nnmail.el (nnmail-fancy-expiry-target): Also bind mail-dont-reply-to-names
parent
7029bc7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+3
-0
lisp/gnus/nnmail.el
lisp/gnus/nnmail.el
+4
-2
No files found.
lisp/gnus/ChangeLog
View file @
8d48f3f9
2013-05-30 Glenn Morris <rgm@gnu.org>
* nnmail.el (nnmail-fancy-expiry-target):
Also bind mail-dont-reply-to-names.
* spam-stat.el (spam-stat-save):
No need to tweak font-lock in temp buffers.
...
...
lisp/gnus/nnmail.el
View file @
8d48f3f9
...
...
@@ -1952,8 +1952,10 @@ If TIME is nil, then return the cutoff time for oldness instead."
((and (equal header 'to-from)
(or (string-match (cadr regexp-target-pair) from)
(and (string-match (cadr regexp-target-pair) to)
(let ((rmail-dont-reply-to-names
(message-dont-reply-to-names)))
(let* ((mail-dont-reply-to-names
(message-dont-reply-to-names))
(rmail-dont-reply-to-names ; obsolete since 24.1
mail-dont-reply-to-names))
(equal (if (fboundp 'rmail-dont-reply-to)
(rmail-dont-reply-to from)
(mail-dont-reply-to from)) "")))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment