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
4f02f0c9
Commit
4f02f0c9
authored
Sep 23, 2009
by
Glenn Morris
Browse files
(rmail-reply): Don't try to add a References header when replying to
mail without References or Message-Id. (Bug#4525)
parent
e14f0a78
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/mail/rmail.el
lisp/mail/rmail.el
+6
-4
No files found.
lisp/ChangeLog
View file @
4f02f0c9
2009-09-23 Glenn Morris <rgm@gnu.org>
* mail/rmail.el (rmail-reply): Don't try to add a References header when
replying to mail without References or Message-Id. (Bug#4525)
2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
* term/ns-win.el (ns-reg-to-script): New variable.
* term/ns-win.el (ns-reg-to-script): New variable.
...
...
lisp/mail/rmail.el
View file @
4f02f0c9
...
@@ -3537,10 +3537,12 @@ use \\[mail-yank-original] to yank the original message into it."
...
@@ -3537,10 +3537,12 @@ use \\[mail-yank-original] to yank the original message into it."
(aref rmail-msgref-vector msgnum))
(aref rmail-msgref-vector msgnum))
rmail-answered-attr-index))
rmail-answered-attr-index))
nil
nil
(if (or references message-id)
(list (cons "References" (if references
(list (cons "References" (if references
(concat (mapconcat 'identity references " ")
(concat
(mapconcat 'identity references " ")
" " message-id)
" " message-id)
message-id))))))
message-id))))))
)
(defun rmail-mark-message (buffer msgnum-list attribute)
(defun rmail-mark-message (buffer msgnum-list attribute)
"Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.
"Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.
...
...
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