diff options
Diffstat (limited to 'lisp/mail/sendmail.el')
| -rw-r--r-- | lisp/mail/sendmail.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index e90d46bb949..b09f09c9698 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1,6 +1,6 @@ ;;; sendmail.el --- mail sending commands for Emacs. -;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1992, 1993 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: mail @@ -584,13 +584,13 @@ the user from the mailer." (progn (mail-position-on-field "to") (insert "\nBCC: ")))) -(defun mail-fcc () +(defun mail-fcc (folder) "Add a new FCC field, with file name completion." - (interactive) + (interactive "FFolder carbon copy: ") (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: "))) + (insert "\nFCC: " folder)) (defun mail-position-on-field (field &optional soft) (let (end |
