changeset 53411:f0c057d16a15

(sendmail-user-agent-compose): Use assoc-string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 29 Dec 2003 19:52:25 +0000
parents ce3a88ca37ee
children a2bba9e88b95
files lisp/simple.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Mon Dec 29 19:51:54 2003 +0000
+++ b/lisp/simple.el	Mon Dec 29 19:52:25 2003 +0000
@@ -3735,9 +3735,9 @@
 	    (same-window-buffer-names nil)
 	    (same-window-regexps nil))
 	(funcall switch-function "*mail*")))
-  (let ((cc (cdr (assoc-ignore-case "cc" other-headers)))
-	(in-reply-to (cdr (assoc-ignore-case "in-reply-to" other-headers)))
-	(body (cdr (assoc-ignore-case "body" other-headers))))
+  (let ((cc (cdr (assoc-string "cc" other-headers t)))
+	(in-reply-to (cdr (assoc-string "in-reply-to" other-headers t)))
+	(body (cdr (assoc-string "body" other-headers t))))
     (or (mail continue to subject in-reply-to cc yank-action send-actions)
 	continue
 	(error "Message aborted"))