aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/simple.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index ade177c5b8e..d23ed11c6c3 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3735,9 +3735,9 @@ See also `read-mail-command' concerning reading mail."
3735 (same-window-buffer-names nil) 3735 (same-window-buffer-names nil)
3736 (same-window-regexps nil)) 3736 (same-window-regexps nil))
3737 (funcall switch-function "*mail*"))) 3737 (funcall switch-function "*mail*")))
3738 (let ((cc (cdr (assoc-ignore-case "cc" other-headers))) 3738 (let ((cc (cdr (assoc-string "cc" other-headers t)))
3739 (in-reply-to (cdr (assoc-ignore-case "in-reply-to" other-headers))) 3739 (in-reply-to (cdr (assoc-string "in-reply-to" other-headers t)))
3740 (body (cdr (assoc-ignore-case "body" other-headers)))) 3740 (body (cdr (assoc-string "body" other-headers t))))
3741 (or (mail continue to subject in-reply-to cc yank-action send-actions) 3741 (or (mail continue to subject in-reply-to cc yank-action send-actions)
3742 continue 3742 continue
3743 (error "Message aborted")) 3743 (error "Message aborted"))