comparison lisp/mail/mh-comp.el @ 35975:a6d7df85ca41

(mh-compose-letter-function): Fix :type.
author Dave Love <fx@gnu.org>
date Thu, 08 Feb 2001 00:01:35 +0000
parents e2d1dc22d119
children 67b464da13ec
comparison
equal deleted inserted replaced
35974:0faaf71003ac 35975:a6d7df85ca41
28 28
29 ;; Internal support for mh-e package. 29 ;; Internal support for mh-e package.
30 30
31 ;;; Change Log: 31 ;;; Change Log:
32 32
33 ;; $Id: mh-comp.el,v 1.19 2000/08/16 20:39:14 monnier Exp $ 33 ;; $Id: mh-comp.el,v 1.20 2000/11/02 12:37:38 gerd Exp $
34 34
35 ;;; Code: 35 ;;; Code:
36 36
37 (provide 'mh-comp) 37 (provide 'mh-comp)
38 (require 'mh-utils) 38 (require 'mh-utils)
166 :group 'mh-compose) 166 :group 'mh-compose)
167 167
168 (defcustom mh-compose-letter-function nil 168 (defcustom mh-compose-letter-function nil
169 "Invoked when setting up a letter draft. 169 "Invoked when setting up a letter draft.
170 It is passed three arguments: TO recipients, SUBJECT, and CC recipients." 170 It is passed three arguments: TO recipients, SUBJECT, and CC recipients."
171 :type 'function 171 :type '(choice (const nil) function)
172 :group 'mh-compose) 172 :group 'mh-compose)
173 173
174 (defcustom mh-before-send-letter-hook nil 174 (defcustom mh-before-send-letter-hook nil
175 "Invoked at the beginning of the \\<mh-letter-mode-map>\\[mh-send-letter] command." 175 "Invoked at the beginning of the \\<mh-letter-mode-map>\\[mh-send-letter] command."
176 :type 'hook 176 :type 'hook