summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-06-13 04:33:02 +0000
committerRichard M. Stallman <rms@gnu.org>1998-06-13 04:33:02 +0000
commit637471cf783e2cd083f1f76ce4b086eb4b8ba10f (patch)
tree975d88d084e83a5c4fc08ed5d9c8074bbac96942
parent2f1c2b2390c7da151f8499e70c4b08871911a576 (diff)
downloademacs-637471cf783e2cd083f1f76ce4b086eb4b8ba10f.tar.gz
Several fixes in doc string style.
(uce-mail-reader): Use defcustom.
-rw-r--r--lisp/mail/uce.el17
1 files changed, 10 insertions, 7 deletions
diff --git a/lisp/mail/uce.el b/lisp/mail/uce.el
index 3b0956159dd..06c57960a4a 100644
--- a/lisp/mail/uce.el
+++ b/lisp/mail/uce.el
@@ -114,18 +114,21 @@
;; RMAIL are only evaluated if we have received a message with RMAIL...
;;(require 'rmail)
-(defvar uce-mail-reader 'rmail
- "A symbol indicating which mail reader you are using.
-Choose from: gnus, rmail.")
-
(defgroup uce nil
"Facilitate reply to unsolicited commercial email."
:prefix "uce-"
:group 'mail)
+(defcustom uce-mail-reader 'rmail
+ "A symbol indicating which mail reader you are using.
+Choose from: `gnus', `rmail'."
+ :type '(choice (const gnus) (const rmail))
+ :version "20.3"
+ :group 'uce)
+
(defcustom uce-setup-hook nil
"Hook to run after UCE rant message is composed.
-This hook is run after mail-setup-hook, which is run as well."
+This hook is run after `mail-setup-hook', which is run as well."
:type 'hook
:group 'uce)
@@ -166,7 +169,7 @@ using your sendmail at this moment of time.
Thank you."
- "This is the text that uce-reply-to-uce command will put in reply buffer.
+ "This is the text that `uce-reply-to-uce' command will put in reply buffer.
Some of spamming programs in use will be set up to read all incoming
to spam address email, and will remove people who put the word `remove'
on beginning of some line from the spamming list. So, when you set it
@@ -185,7 +188,7 @@ Value nil means use no separator."
(defcustom uce-signature mail-signature
"Text to put as your signature after the note to UCE sender.
-Value nil means none, t means insert ~/.signature file (if it happens
+Value nil means none, t means insert `~/.signature' file (if it happens
to exist), if this variable is a string this string will be inserted
as your signature."
:type '(choice (const nil) (const t) string)