aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-03-12 03:48:12 +0000
committerJim Blandy <[email protected]>1992-03-12 03:48:12 +0000
commit70ee42f75d671390dfd0c33243e5e93b8fb9570d (patch)
tree976460bc28da3cda85639757cae7612f2f4e21b9 /lisp
parent03759fe00303a19cff5ce1cd1d6408c97ce2c929 (diff)
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/sendmail.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 709f4d880a..c22d7d85c0 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -1,5 +1,5 @@
;; Mail sending commands for Emacs.
-;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -173,6 +173,7 @@ C-c C-v mail-sent-via (add a sent-via field for each To or CC)."
(define-key mail-mode-map "\C-c?" 'describe-mode)
(define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to)
(define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc)
+ (define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc)
(define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc)
(define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
(define-key mail-mode-map "\C-c\C-t" 'mail-text)
@@ -436,11 +437,19 @@ the user from the mailer."
(progn (mail-position-on-field "to")
(insert "\nBCC: "))))
+(defun mail-fcc ()
+ "Add a new FCC field, with file name completion."
+ (interactive)
+ (expand-abbrev)
+ (or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
+ (mail-position-on-field "to"))
+ (insert "\nFCC: " (read-file-name "Folder carbon copy: ")))
+
(defun mail-position-on-field (field &optional soft)
(let (end
(case-fold-search t))
(goto-char (point-min))
- (search-forward (concat "\n" mail-header-separator "\n"))
+ (search-forward (concat "^" mail-header-separator "\n"))
(setq end (match-beginning 0))
(goto-char (point-min))
(if (re-search-forward (concat "^" (regexp-quote field) ":") end t)