]> git.eshelyaron.com Git - emacs.git/commitdiff
(sendmail-user-agent-compose): New function;
authorRichard M. Stallman <rms@gnu.org>
Sat, 5 Jul 1997 03:44:54 +0000 (03:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 5 Jul 1997 03:44:54 +0000 (03:44 +0000)
this has the code that was in sendmail-user-agent.
(sendmail-user-agent): Use sendmail-user-agent-compose.

lisp/simple.el

index e85d1710953f4b6e6b4b22545f11a6d43848c9a3..a60e86b0dd801b93bf0dfecad991938c166ffe12 100644 (file)
@@ -3121,31 +3121,34 @@ The properties used on SYMBOL are `composefunc', `sendfunc',
     element))
 
 (define-mail-user-agent 'sendmail-user-agent
-  '(lambda (&optional to subject other-headers continue
-                     switch-function yank-action send-actions)
-     (if switch-function
-        (let ((special-display-buffer-names nil)
-              (special-display-regexps nil)
-              (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))))
-       (or (mail continue to subject in-reply-to cc yank-action send-actions)
-          continue
-          (error "Message aborted"))
-       (save-excursion
-        (goto-char (point-min))
-        (search-forward mail-header-separator)
-        (beginning-of-line)
-        (while other-headers
-          (if (not (member (car (car other-headers)) '("in-reply-to" "cc")))
-              (insert (car (car other-headers)) ": "
-                      (cdr (car other-headers)) "\n"))
-          (setq other-headers (cdr other-headers)))
-        t)))
+  'sendmail-user-agent-compose
   'mail-send-and-exit)
 
+(defun sendmail-user-agent-compose (&optional to subject other-headers continue
+                                             switch-function yank-action
+                                             send-actions)
+  (if switch-function
+      (let ((special-display-buffer-names nil)
+           (special-display-regexps nil)
+           (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))))
+    (or (mail continue to subject in-reply-to cc yank-action send-actions)
+       continue
+       (error "Message aborted"))
+    (save-excursion
+      (goto-char (point-min))
+      (search-forward mail-header-separator)
+      (beginning-of-line)
+      (while other-headers
+       (if (not (member (car (car other-headers)) '("in-reply-to" "cc")))
+           (insert (car (car other-headers)) ": "
+                   (cdr (car other-headers)) "\n"))
+       (setq other-headers (cdr other-headers)))
+      t)))
+
 (define-mail-user-agent 'mh-e-user-agent
   'mh-smail-batch 'mh-send-letter 'mh-fully-kill-draft
   'mh-before-send-letter-hook)