aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-09-12 17:59:26 +0000
committerDave Love2000-09-12 17:59:26 +0000
commit9023837e8928013bfb69ea4308bc8f6509114f64 (patch)
tree44b6603da1ea75ae40c09679263c3fe5e10fb808
parentc6ad01e8537f0e25e78b85beba56a673919a5df7 (diff)
downloademacs-9023837e8928013bfb69ea4308bc8f6509114f64.tar.gz
emacs-9023837e8928013bfb69ea4308bc8f6509114f64.zip
(read-mail-command): Doc fix.
(mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/simple.el27
2 files changed, 23 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 00abcedaba2..3276d946d8b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12000-09-12 Dave Love <fx@gnu.org> 12000-09-12 Dave Love <fx@gnu.org>
2 2
3 * simple.el (read-mail-command): Doc fix.
4 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
5
3 * vc.el (vc-dired-listing-switches): Fix :version. 6 * vc.el (vc-dired-listing-switches): Fix :version.
4 7
5 * vc-hooks.el: Doc fixes. 8 * vc-hooks.el: Doc fixes.
diff --git a/lisp/simple.el b/lisp/simple.el
index ffe032e7690..dde9c9f8eeb 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -29,6 +29,7 @@
29 29
30(eval-when-compile 30(eval-when-compile
31 (autoload 'widget-convert "wid-edit") 31 (autoload 'widget-convert "wid-edit")
32 (autoload 'shell-mode "shell")
32 (require 'cl)) 33 (require 'cl))
33 34
34 35
@@ -3184,7 +3185,8 @@ use either M-x customize or the function `set-input-mode'."
3184 3185
3185(defcustom read-mail-command 'rmail 3186(defcustom read-mail-command 'rmail
3186 "*Your preference for a mail reading package. 3187 "*Your preference for a mail reading package.
3187This is used by some keybindings which support reading mail." 3188This is used by some keybindings which support reading mail.
3189See also `mail-user-agent' concerning sending mail."
3188 :type '(choice (function-item rmail) 3190 :type '(choice (function-item rmail)
3189 (function-item gnus) 3191 (function-item gnus)
3190 (function-item mh-rmail) 3192 (function-item mh-rmail)
@@ -3194,27 +3196,38 @@ This is used by some keybindings which support reading mail."
3194 3196
3195(defcustom mail-user-agent 'sendmail-user-agent 3197(defcustom mail-user-agent 'sendmail-user-agent
3196 "*Your preference for a mail composition package. 3198 "*Your preference for a mail composition package.
3197Various Emacs Lisp packages (e.g. reporter) require you to compose an 3199Various Emacs Lisp packages (e.g. Reporter) require you to compose an
3198outgoing email message. This variable lets you specify which 3200outgoing email message. This variable lets you specify which
3199mail-sending package you prefer. 3201mail-sending package you prefer.
3200 3202
3201Valid values include: 3203Valid values include:
3202 3204
3203 `sendmail-user-agent' -- use the default Emacs Mail package 3205 `sendmail-user-agent' -- use the default Emacs Mail package.
3204 `mh-e-user-agent' -- use the Emacs interface to the MH mail system 3206 See Info node `(emacs)Sending Mail'.
3205 `message-user-agent' -- use the Gnus mail sending package 3207 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
3208 See Info node `(mh-e)'.
3209 `message-user-agent' -- use the Gnus Message package.
3210 See Info node `(message)'.
3211 `gnus-user-agent' -- like `message-user-agent', but with Gnus
3212 paraphernalia, particularly the Gcc: header for
3213 archiving.
3206 3214
3207Additional valid symbols may be available; check with the author of 3215Additional valid symbols may be available; check with the author of
3208your package for details." 3216your package for details.
3217
3218See also `read-mail-command' concerning reading mail."
3209 :type '(radio (function-item :tag "Default Emacs mail" 3219 :type '(radio (function-item :tag "Default Emacs mail"
3210 :format "%t\n" 3220 :format "%t\n"
3211 sendmail-user-agent) 3221 sendmail-user-agent)
3212 (function-item :tag "Emacs interface to MH" 3222 (function-item :tag "Emacs interface to MH"
3213 :format "%t\n" 3223 :format "%t\n"
3214 mh-e-user-agent) 3224 mh-e-user-agent)
3215 (function-item :tag "Gnus mail sending package" 3225 (function-item :tag "Gnus Message package"
3216 :format "%t\n" 3226 :format "%t\n"
3217 message-user-agent) 3227 message-user-agent)
3228 (function-item :tag "Gnus Message with full Gnus features"
3229 :format "%t\n"
3230 gnus-user-agent)
3218 (function :tag "Other")) 3231 (function :tag "Other"))
3219 :group 'mail) 3232 :group 'mail)
3220 3233