emacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-commit] emacs/lisp/mh-e mh-comp.el ChangeLog


From: Bill Wohler
Subject: [Emacs-commit] emacs/lisp/mh-e mh-comp.el ChangeLog
Date: Fri, 03 Mar 2006 20:02:10 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Bill Wohler <address@hidden>    06/03/03 20:02:10

Modified files:
        lisp/mh-e      : mh-comp.el ChangeLog 

Log message:
        (mh-send-letter, mh-insert-auto-fields): Sync docstrings with manual.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/mh-comp.el.diff?tr1=1.48&tr2=1.49&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.169&tr2=1.170&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.169 emacs/lisp/mh-e/ChangeLog:1.170
--- emacs/lisp/mh-e/ChangeLog:1.169     Fri Mar  3 00:29:23 2006
+++ emacs/lisp/mh-e/ChangeLog   Fri Mar  3 20:02:10 2006
@@ -1,3 +1,8 @@
+2006-03-03  Bill Wohler  <address@hidden>
+
+       * mh-comp.el (mh-send-letter, mh-insert-auto-fields): Sync
+       docstrings with manual.
+
 2006-03-02  Bill Wohler  <address@hidden>
 
        * mh-folder.el (mh-tool-bar-init): Autoload.
Index: emacs/lisp/mh-e/mh-comp.el
diff -u emacs/lisp/mh-e/mh-comp.el:1.48 emacs/lisp/mh-e/mh-comp.el:1.49
--- emacs/lisp/mh-e/mh-comp.el:1.48     Wed Feb  1 23:24:34 2006
+++ emacs/lisp/mh-e/mh-comp.el  Fri Mar  3 20:02:10 2006
@@ -230,6 +230,13 @@
 this command. For example, if you want to check your spelling in
 your message before sending, add the function `ispell-message'.
 
+Unless `mh-insert-auto-fields' had previously been called
+manually, the function `mh-insert-auto-fields' is called to
+insert fields based upon the recipients. If fields are added, you
+are given a chance to see and to confirm these fields before the
+message is actually sent. You can do away with this confirmation
+by turning off the option `mh-auto-fields-prompt-flag'.
+
 In case the MH \"send\" program is installed under a different name,
 use `mh-send-prog' to tell MH-E the name."
   (interactive "P")
@@ -979,14 +986,16 @@
 (defun mh-insert-auto-fields (&optional non-interactive)
   "Insert custom fields if recipient is found in `mh-auto-fields-list'.
 
-Sets buffer-local `mh-insert-auto-fields-done-local' if header
-fields were added. If NON-INTERACTIVE is non-nil, perform actions
-quietly and only if `mh-insert-auto-fields-done-local' is nil.
-
-An `identity' entry is skipped if one was already entered
-manually.
-
-Return t if fields added; otherwise return nil."
+Once the header contains one or more recipients, you may run this
+command to insert these fields manually. However, if you use this
+command, the automatic insertion when the message is sent is
+disabled.
+
+In a program, set buffer-local `mh-insert-auto-fields-done-local'
+if header fields were added. If NON-INTERACTIVE is non-nil,
+perform actions quietly and only if
+`mh-insert-auto-fields-done-local' is nil. Return t if fields
+added; otherwise return nil."
   (interactive)
   (when (or (not non-interactive)
             (not mh-insert-auto-fields-done-local))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]