Mercurial > emacs
changeset 23265:92177ff080cc
(feedmail-x-mailer-line-user-appendage,
feedmail-fiddle-plex-user-list,
feedmail-spray-address-fiddle-plex-list,
feedmail-prompt-before-queue-user-alist,
feedmail-prompt-before-queue-help-supplement,
feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
feedmail-queue-alternative-mail-header-separator): Fix customize
type.
-------------------------------------------------------------------
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 18 Sep 1998 09:12:03 +0000 |
parents | 359e6eb97e11 |
children | ccedad9251db |
files | lisp/mail/feedmail.el |
diffstat | 1 files changed, 15 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/feedmail.el Fri Sep 18 09:10:57 1998 +0000 +++ b/lisp/mail/feedmail.el Fri Sep 18 09:12:03 1998 +0000 @@ -563,7 +563,7 @@ (defcustom feedmail-x-mailer-line-user-appendage nil "*See feedmail-x-mailer-line." :group 'feedmail-headers - :type '(choice (const nil) string) + :type '(choice (const nil) (const t) string) ) @@ -701,7 +701,8 @@ manipulation functions, in this context, it makes no sense to have an element which is nil, t, or a simple string." :group 'feedmail-header - :type 'list + :type '(repeat (choice function) + sexp) ; too complex to be described accurately ) @@ -777,7 +778,7 @@ non-nil; (6) stand back and watch co-workers wonder at how efficient you are at accomplishing inherently inefficient things." :group 'feedmail-spray - :type 'list + :type 'sexp ; too complex to be described accurately ) @@ -924,7 +925,7 @@ (defcustom feedmail-prompt-before-queue-user-alist nil "See feedmail-prompt-before-queue-standard-alist." :group 'feedmail-queue - :type 'alist + :type '(repeat (cons character function)) ) @@ -938,7 +939,7 @@ value, that string is written to the help buffer after the standard info. It may contain embedded line breaks. It will be printed via princ." :group 'feedmail-queue - :type 'string + :type '(choice (const nil) string) ) @@ -950,7 +951,13 @@ (on-demand . feedmail-run-the-queue-global-prompt)) "See feedmail-queue-reminder." :group 'feedmail-queue - :type 'alist + :type '(repeat (cons (choice :tag "Event" + (const on-demand) + (const after-immediate) + (const after-queue) + (const after-draft) + (const after-run)) + function)) ) @@ -1062,7 +1069,7 @@ used, but feedmail will do further manipulation on the string you return, so it's not expected to be a complete filename." :group 'feedmail-queue - :type 'string + :type '(choice (const :tag "Default" t) string function (const ask)) ) @@ -1215,7 +1222,7 @@ set `mail-header-separator' to the value of feedmail-queue-alternative-mail-header-separator and try again." :group 'feedmail-queue - :type 'string + :type '(choice (const nil) string) )