aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/mh-comp.el21
1 files changed, 10 insertions, 11 deletions
diff --git a/lisp/mail/mh-comp.el b/lisp/mail/mh-comp.el
index ca773284fb7..e774d7cd3bf 100644
--- a/lisp/mail/mh-comp.el
+++ b/lisp/mail/mh-comp.el
@@ -1,5 +1,5 @@
1;;; mh-comp --- mh-e functions for composing messages 1;;; mh-comp --- mh-e functions for composing messages
2;; Time-stamp: <94/12/31 14:07:28 gildea> 2;; Time-stamp: <95/04/20 19:16:23 gildea>
3 3
4;; Copyright (C) 1993, 1995 Free Software Foundation, Inc. 4;; Copyright (C) 1993, 1995 Free Software Foundation, Inc.
5 5
@@ -25,7 +25,7 @@
25 25
26;;; Change Log: 26;;; Change Log:
27 27
28;; $Id: mh-comp.el,v 1.3 1995/04/09 22:31:08 kwzh Exp kwzh $ 28;; $Id: mh-comp.el,v 1.4 1995/04/10 00:19:27 kwzh Exp kwzh $
29 29
30;;; Code: 30;;; Code:
31 31
@@ -595,7 +595,7 @@ See also documentation for `\\[mh-send]' function."
595(defun mh-goto-header-end (arg) 595(defun mh-goto-header-end (arg)
596 ;; Find the end of the message header in the current buffer and position 596 ;; Find the end of the message header in the current buffer and position
597 ;; the cursor at the ARG'th newline after the header. 597 ;; the cursor at the ARG'th newline after the header.
598 (if (re-search-forward "^$\\|^-+$" nil nil) 598 (if (re-search-forward "^-*$" nil nil)
599 (forward-line arg))) 599 (forward-line arg)))
600 600
601 601
@@ -685,11 +685,10 @@ invoked with no args, if those values are non-nil."
685(defun mh-auto-fill-for-letter () 685(defun mh-auto-fill-for-letter ()
686 ;; Auto-fill in letters treats the header specially by inserting a tab 686 ;; Auto-fill in letters treats the header specially by inserting a tab
687 ;; before continuation line. 687 ;; before continuation line.
688 (do-auto-fill)
689 (if (mh-in-header-p) 688 (if (mh-in-header-p)
690 (save-excursion 689 (let ((fill-prefix "\t"))
691 (beginning-of-line nil) 690 (do-auto-fill))
692 (insert-char ?\t 1)))) 691 (do-auto-fill)))
693 692
694 693
695(defun mh-in-header-p () 694(defun mh-in-header-p ()
@@ -991,24 +990,24 @@ Use \\[kill-buffer] if you don't want to delete the draft message file."
991;;; autoloads from mh-mime 990;;; autoloads from mh-mime
992 991
993(autoload 'mh-mhn-compose-insertion "mh-mime" 992(autoload 'mh-mhn-compose-insertion "mh-mime"
994 "Add a directive to insert a message part from a file. 993 "Add a directive to insert a MIME message part from a file.
995This is the typical way to insert non-text parts in a message. 994This is the typical way to insert non-text parts in a message.
996See also \\[mh-edit-mhn]." t) 995See also \\[mh-edit-mhn]." t)
997 996
998(autoload 'mh-mhn-compose-anon-ftp "mh-mime" 997(autoload 'mh-mhn-compose-anon-ftp "mh-mime"
999 "Add a directive for an anonymous ftp external body part. 998 "Add a directive for a MIME anonymous ftp external body part.
1000This directive tells MH to include a reference to a 999This directive tells MH to include a reference to a
1001message/external-body part retrievable by anonymous FTP. 1000message/external-body part retrievable by anonymous FTP.
1002See also \\[mh-edit-mhn]." t) 1001See also \\[mh-edit-mhn]." t)
1003 1002
1004(autoload 'mh-mhn-compose-external-compressed-tar "mh-mime" 1003(autoload 'mh-mhn-compose-external-compressed-tar "mh-mime"
1005 "Add a directive to include a reference to a compressed tar file. 1004 "Add a directive to include a MIME reference to a compressed tar file.
1006The file should be available via anonymous ftp. This directive 1005The file should be available via anonymous ftp. This directive
1007tells MH to include a reference to a message/external-body part. 1006tells MH to include a reference to a message/external-body part.
1008See also \\[mh-edit-mhn]." t) 1007See also \\[mh-edit-mhn]." t)
1009 1008
1010(autoload 'mh-mhn-compose-forw "mh-mime" 1009(autoload 'mh-mhn-compose-forw "mh-mime"
1011 "Add a forw directive to this message. 1010 "Add a forw directive to this message, to forward a message with MIME.
1012This directive tells MH to include another message in this one. 1011This directive tells MH to include another message in this one.
1013See also \\[mh-edit-mhn]." t) 1012See also \\[mh-edit-mhn]." t)
1014 1013