diff options
| author | Andreas Schwab | 1998-09-18 09:12:03 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-09-18 09:12:03 +0000 |
| commit | 7b3237a117c58076244706dee29d75a3a2fe5e75 (patch) | |
| tree | 2a74b0971b6f38db2f96f07c4702724a78143f50 | |
| parent | 3917863bc11c3936eb35d3c962e79d3717be612a (diff) | |
| download | emacs-7b3237a117c58076244706dee29d75a3a2fe5e75.tar.gz emacs-7b3237a117c58076244706dee29d75a3a2fe5e75.zip | |
(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.
-------------------------------------------------------------------
| -rw-r--r-- | lisp/mail/feedmail.el | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 6f878c29b6b..27ba0ab4152 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el | |||
| @@ -563,7 +563,7 @@ influence what they will use as the envelope." | |||
| 563 | (defcustom feedmail-x-mailer-line-user-appendage nil | 563 | (defcustom feedmail-x-mailer-line-user-appendage nil |
| 564 | "*See feedmail-x-mailer-line." | 564 | "*See feedmail-x-mailer-line." |
| 565 | :group 'feedmail-headers | 565 | :group 'feedmail-headers |
| 566 | :type '(choice (const nil) string) | 566 | :type '(choice (const nil) (const t) string) |
| 567 | ) | 567 | ) |
| 568 | 568 | ||
| 569 | 569 | ||
| @@ -701,7 +701,8 @@ variable feedmail-fiddle-plex-blurb. In contrast to some other fiddle-plex | |||
| 701 | manipulation functions, in this context, it makes no sense to have an element | 701 | manipulation functions, in this context, it makes no sense to have an element |
| 702 | which is nil, t, or a simple string." | 702 | which is nil, t, or a simple string." |
| 703 | :group 'feedmail-header | 703 | :group 'feedmail-header |
| 704 | :type 'list | 704 | :type '(repeat (choice function) |
| 705 | sexp) ; too complex to be described accurately | ||
| 705 | ) | 706 | ) |
| 706 | 707 | ||
| 707 | 708 | ||
| @@ -777,7 +778,7 @@ appropriately; (5) send the message with feedmail-enable-spray set | |||
| 777 | non-nil; (6) stand back and watch co-workers wonder at how efficient | 778 | non-nil; (6) stand back and watch co-workers wonder at how efficient |
| 778 | you are at accomplishing inherently inefficient things." | 779 | you are at accomplishing inherently inefficient things." |
| 779 | :group 'feedmail-spray | 780 | :group 'feedmail-spray |
| 780 | :type 'list | 781 | :type 'sexp ; too complex to be described accurately |
| 781 | ) | 782 | ) |
| 782 | 783 | ||
| 783 | 784 | ||
| @@ -924,7 +925,7 @@ in the user alist with a value of nil." ) | |||
| 924 | (defcustom feedmail-prompt-before-queue-user-alist nil | 925 | (defcustom feedmail-prompt-before-queue-user-alist nil |
| 925 | "See feedmail-prompt-before-queue-standard-alist." | 926 | "See feedmail-prompt-before-queue-standard-alist." |
| 926 | :group 'feedmail-queue | 927 | :group 'feedmail-queue |
| 927 | :type 'alist | 928 | :type '(repeat (cons character function)) |
| 928 | ) | 929 | ) |
| 929 | 930 | ||
| 930 | 931 | ||
| @@ -938,7 +939,7 @@ and the prompt itself can be changed. If this variable is set to a string | |||
| 938 | value, that string is written to the help buffer after the standard info. | 939 | value, that string is written to the help buffer after the standard info. |
| 939 | It may contain embedded line breaks. It will be printed via princ." | 940 | It may contain embedded line breaks. It will be printed via princ." |
| 940 | :group 'feedmail-queue | 941 | :group 'feedmail-queue |
| 941 | :type 'string | 942 | :type '(choice (const nil) string) |
| 942 | ) | 943 | ) |
| 943 | 944 | ||
| 944 | 945 | ||
| @@ -950,7 +951,13 @@ It may contain embedded line breaks. It will be printed via princ." | |||
| 950 | (on-demand . feedmail-run-the-queue-global-prompt)) | 951 | (on-demand . feedmail-run-the-queue-global-prompt)) |
| 951 | "See feedmail-queue-reminder." | 952 | "See feedmail-queue-reminder." |
| 952 | :group 'feedmail-queue | 953 | :group 'feedmail-queue |
| 953 | :type 'alist | 954 | :type '(repeat (cons (choice :tag "Event" |
| 955 | (const on-demand) | ||
| 956 | (const after-immediate) | ||
| 957 | (const after-queue) | ||
| 958 | (const after-draft) | ||
| 959 | (const after-run)) | ||
| 960 | function)) | ||
| 954 | ) | 961 | ) |
| 955 | 962 | ||
| 956 | 963 | ||
| @@ -1062,7 +1069,7 @@ Filename completion is available so that you can inspect what's already been | |||
| 1062 | used, but feedmail will do further manipulation on the string you return, so | 1069 | used, but feedmail will do further manipulation on the string you return, so |
| 1063 | it's not expected to be a complete filename." | 1070 | it's not expected to be a complete filename." |
| 1064 | :group 'feedmail-queue | 1071 | :group 'feedmail-queue |
| 1065 | :type 'string | 1072 | :type '(choice (const :tag "Default" t) string function (const ask)) |
| 1066 | ) | 1073 | ) |
| 1067 | 1074 | ||
| 1068 | 1075 | ||
| @@ -1215,7 +1222,7 @@ of `mail-header-separator'. If it can't find that, it will temporarily | |||
| 1215 | set `mail-header-separator' to the value of | 1222 | set `mail-header-separator' to the value of |
| 1216 | feedmail-queue-alternative-mail-header-separator and try again." | 1223 | feedmail-queue-alternative-mail-header-separator and try again." |
| 1217 | :group 'feedmail-queue | 1224 | :group 'feedmail-queue |
| 1218 | :type 'string | 1225 | :type '(choice (const nil) string) |
| 1219 | ) | 1226 | ) |
| 1220 | 1227 | ||
| 1221 | 1228 | ||