diff options
| author | Glenn Morris | 2009-03-14 21:20:47 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-03-14 21:20:47 +0000 |
| commit | c1051e819d8dbb0dedb9408fed6b089f88c6862d (patch) | |
| tree | e11f915610350a06af134525a294bcb0f133001d | |
| parent | c6c62e780c0a8023d59dcda99a80d9c525bd3912 (diff) | |
| download | emacs-c1051e819d8dbb0dedb9408fed6b089f88c6862d.tar.gz emacs-c1051e819d8dbb0dedb9408fed6b089f88c6862d.zip | |
Remove leading `*' from defcustom docs.
| -rw-r--r-- | lisp/mail/mailalias.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/mail/mailalias.el b/lisp/mail/mailalias.el index 98e08747369..4d8c684e8f7 100644 --- a/lisp/mail/mailalias.el +++ b/lisp/mail/mailalias.el | |||
| @@ -36,12 +36,12 @@ | |||
| 36 | :group 'mail) | 36 | :group 'mail) |
| 37 | 37 | ||
| 38 | (defcustom mail-passwd-files '("/etc/passwd") | 38 | (defcustom mail-passwd-files '("/etc/passwd") |
| 39 | "*List of files from which to determine valid user names." | 39 | "List of files from which to determine valid user names." |
| 40 | :type '(repeat string) | 40 | :type '(repeat string) |
| 41 | :group 'mailalias) | 41 | :group 'mailalias) |
| 42 | 42 | ||
| 43 | (defcustom mail-passwd-command nil | 43 | (defcustom mail-passwd-command nil |
| 44 | "*Shell command to retrieve text to add to `/etc/passwd', or nil." | 44 | "Shell command to retrieve text to add to `/etc/passwd', or nil." |
| 45 | :type '(choice string (const nil)) | 45 | :type '(choice string (const nil)) |
| 46 | :group 'mailalias) | 46 | :group 'mailalias) |
| 47 | 47 | ||
| @@ -66,7 +66,7 @@ When t this still needs to be initialized.") | |||
| 66 | ("Followup-To:" . (mail-sentto-newsgroups)) | 66 | ("Followup-To:" . (mail-sentto-newsgroups)) |
| 67 | ;;("Distribution:" ???) | 67 | ;;("Distribution:" ???) |
| 68 | )) | 68 | )) |
| 69 | "*Alist of header field and expression to return alist for completion. | 69 | "Alist of header field and expression to return alist for completion. |
| 70 | The expression may reference the variable `pattern' | 70 | The expression may reference the variable `pattern' |
| 71 | which will hold the string being completed. | 71 | which will hold the string being completed. |
| 72 | If not on matching header, `mail-complete-function' gets called instead." | 72 | If not on matching header, `mail-complete-function' gets called instead." |
| @@ -76,7 +76,7 @@ If not on matching header, `mail-complete-function' gets called instead." | |||
| 76 | 76 | ||
| 77 | ;;;###autoload | 77 | ;;;###autoload |
| 78 | (defcustom mail-complete-style 'angles | 78 | (defcustom mail-complete-style 'angles |
| 79 | "*Specifies how \\[mail-complete] formats the full name when it completes. | 79 | "Specifies how \\[mail-complete] formats the full name when it completes. |
| 80 | If `nil', they contain just the return address like: | 80 | If `nil', they contain just the return address like: |
| 81 | king@grassland.com | 81 | king@grassland.com |
| 82 | If `parens', they look like: | 82 | If `parens', they look like: |
| @@ -87,26 +87,26 @@ If `angles', they look like: | |||
| 87 | :group 'mailalias) | 87 | :group 'mailalias) |
| 88 | 88 | ||
| 89 | (defcustom mail-complete-function 'ispell-complete-word | 89 | (defcustom mail-complete-function 'ispell-complete-word |
| 90 | "*Function to call when completing outside `mail-complete-alist'-header." | 90 | "Function to call when completing outside `mail-complete-alist'-header." |
| 91 | :type '(choice function (const nil)) | 91 | :type '(choice function (const nil)) |
| 92 | :group 'mailalias) | 92 | :group 'mailalias) |
| 93 | 93 | ||
| 94 | (defcustom mail-directory-function nil | 94 | (defcustom mail-directory-function nil |
| 95 | "*Function to get completions from directory service or nil for none. | 95 | "Function to get completions from directory service or nil for none. |
| 96 | See `mail-directory-requery'." | 96 | See `mail-directory-requery'." |
| 97 | :type '(choice function (const nil)) | 97 | :type '(choice function (const nil)) |
| 98 | :group 'mailalias) | 98 | :group 'mailalias) |
| 99 | 99 | ||
| 100 | ;; This is for when the directory is huge, or changes frequently. | 100 | ;; This is for when the directory is huge, or changes frequently. |
| 101 | (defcustom mail-directory-requery nil | 101 | (defcustom mail-directory-requery nil |
| 102 | "*When non-nil call `mail-directory-function' for each completion. | 102 | "When non-nil call `mail-directory-function' for each completion. |
| 103 | In that case, one argument gets passed to the function, the partial string | 103 | In that case, one argument gets passed to the function, the partial string |
| 104 | entered so far." | 104 | entered so far." |
| 105 | :type 'boolean | 105 | :type 'boolean |
| 106 | :group 'mailalias) | 106 | :group 'mailalias) |
| 107 | 107 | ||
| 108 | (defcustom mail-directory-process nil | 108 | (defcustom mail-directory-process nil |
| 109 | "*Shell command to get the list of names from a mail directory. | 109 | "Shell command to get the list of names from a mail directory. |
| 110 | This value is used when the value of `mail-directory-function' | 110 | This value is used when the value of `mail-directory-function' |
| 111 | is `mail-directory-process'. The value should be a list | 111 | is `mail-directory-process'. The value should be a list |
| 112 | of the form (COMMAND ARG ...), where each of the list elements | 112 | of the form (COMMAND ARG ...), where each of the list elements |
| @@ -127,13 +127,13 @@ or like this: | |||
| 127 | (put 'mail-directory-process 'risky-local-variable t) | 127 | (put 'mail-directory-process 'risky-local-variable t) |
| 128 | 128 | ||
| 129 | (defcustom mail-directory-stream nil | 129 | (defcustom mail-directory-stream nil |
| 130 | "*List of (HOST SERVICE) for stream connection to mail directory." | 130 | "List of (HOST SERVICE) for stream connection to mail directory." |
| 131 | :type 'sexp | 131 | :type 'sexp |
| 132 | :group 'mailalias) | 132 | :group 'mailalias) |
| 133 | (put 'mail-directory-stream 'risky-local-variable t) | 133 | (put 'mail-directory-stream 'risky-local-variable t) |
| 134 | 134 | ||
| 135 | (defcustom mail-directory-parser nil | 135 | (defcustom mail-directory-parser nil |
| 136 | "*How to interpret the output of `mail-directory-function'. | 136 | "How to interpret the output of `mail-directory-function'. |
| 137 | Three types of values are possible: | 137 | Three types of values are possible: |
| 138 | 138 | ||
| 139 | - nil means to gather each line as one name | 139 | - nil means to gather each line as one name |