aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-19 18:57:48 +0000
committerKarl Heuer1995-05-19 18:57:48 +0000
commit330e9e11c7d43ad60d58281eba314eded402a496 (patch)
tree3b96b4fb1cda60992605bd1f4c9fd8b52a73c28c
parent1abe848863b49c162f20a0d2aa6ba29f2ed9dbca (diff)
downloademacs-330e9e11c7d43ad60d58281eba314eded402a496.tar.gz
emacs-330e9e11c7d43ad60d58281eba314eded402a496.zip
(mail-mode): Clarify doc string.
(mail-text): Ditto.
-rw-r--r--lisp/mail/sendmail.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index adb6512b3c2..b2e5c480e49 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -274,13 +274,14 @@ actually occur.")
274Like Text Mode but with these additional commands: 274Like Text Mode but with these additional commands:
275C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit 275C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
276C-c C-f move to a header field (and create it if there isn't): 276C-c C-f move to a header field (and create it if there isn't):
277 C-c C-f C-t move to To: C-c C-f C-s move to Subj: 277 C-c C-f C-t move to To: C-c C-f C-s move to Subject:
278 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: 278 C-c C-f C-c move to CC: C-c C-f C-b move to BCC:
279 C-c C-f C-f move to FCC: 279 C-c C-f C-f move to FCC:
280C-c C-t move to message text. 280C-c C-t mail-text (move to beginning of message text).
281C-c C-w mail-signature (insert `~/.signature' file).
281C-c C-y mail-yank-original (insert current message, in Rmail). 282C-c C-y mail-yank-original (insert current message, in Rmail).
282C-c C-q mail-fill-yanked-message (fill what was yanked). 283C-c C-q mail-fill-yanked-message (fill what was yanked).
283C-c C-v mail-sent-via (add a sent-via field for each To or CC)." 284C-c C-v mail-sent-via (add a Sent-via field for each To or CC)."
284 (interactive) 285 (interactive)
285 (kill-all-local-variables) 286 (kill-all-local-variables)
286 (make-local-variable 'mail-reply-buffer) 287 (make-local-variable 'mail-reply-buffer)
@@ -769,7 +770,7 @@ the user from the mailer."
769 nil))) 770 nil)))
770 771
771(defun mail-text () 772(defun mail-text ()
772 "Move point to beginning of text field." 773 "Move point to beginning of message text."
773 (interactive) 774 (interactive)
774 (goto-char (point-min)) 775 (goto-char (point-min))
775 (search-forward (concat "\n" mail-header-separator "\n"))) 776 (search-forward (concat "\n" mail-header-separator "\n")))