aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-13 04:33:02 +0000
committerRichard M. Stallman1998-06-13 04:33:02 +0000
commite13d531d4f1e4ad4b348e2c950b74cef3ee67280 (patch)
tree7e5c002581f5c0609a9650ef18651fabb77e6491
parent5755be321d4f414f757f6b03dac982df685eac8a (diff)
downloademacs-e13d531d4f1e4ad4b348e2c950b74cef3ee67280.tar.gz
emacs-e13d531d4f1e4ad4b348e2c950b74cef3ee67280.zip
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 @@
114;; RMAIL are only evaluated if we have received a message with RMAIL... 114;; RMAIL are only evaluated if we have received a message with RMAIL...
115;;(require 'rmail) 115;;(require 'rmail)
116 116
117(defvar uce-mail-reader 'rmail
118 "A symbol indicating which mail reader you are using.
119Choose from: gnus, rmail.")
120
121(defgroup uce nil 117(defgroup uce nil
122 "Facilitate reply to unsolicited commercial email." 118 "Facilitate reply to unsolicited commercial email."
123 :prefix "uce-" 119 :prefix "uce-"
124 :group 'mail) 120 :group 'mail)
125 121
122(defcustom uce-mail-reader 'rmail
123 "A symbol indicating which mail reader you are using.
124Choose from: `gnus', `rmail'."
125 :type '(choice (const gnus) (const rmail))
126 :version "20.3"
127 :group 'uce)
128
126(defcustom uce-setup-hook nil 129(defcustom uce-setup-hook nil
127 "Hook to run after UCE rant message is composed. 130 "Hook to run after UCE rant message is composed.
128This hook is run after mail-setup-hook, which is run as well." 131This hook is run after `mail-setup-hook', which is run as well."
129 :type 'hook 132 :type 'hook
130 :group 'uce) 133 :group 'uce)
131 134
@@ -166,7 +169,7 @@ using your sendmail at this moment of time.
166 169
167Thank you." 170Thank you."
168 171
169 "This is the text that uce-reply-to-uce command will put in reply buffer. 172 "This is the text that `uce-reply-to-uce' command will put in reply buffer.
170Some of spamming programs in use will be set up to read all incoming 173Some of spamming programs in use will be set up to read all incoming
171to spam address email, and will remove people who put the word `remove' 174to spam address email, and will remove people who put the word `remove'
172on beginning of some line from the spamming list. So, when you set it 175on beginning of some line from the spamming list. So, when you set it
@@ -185,7 +188,7 @@ Value nil means use no separator."
185 188
186(defcustom uce-signature mail-signature 189(defcustom uce-signature mail-signature
187"Text to put as your signature after the note to UCE sender. 190"Text to put as your signature after the note to UCE sender.
188Value nil means none, t means insert ~/.signature file (if it happens 191Value nil means none, t means insert `~/.signature' file (if it happens
189to exist), if this variable is a string this string will be inserted 192to exist), if this variable is a string this string will be inserted
190as your signature." 193as your signature."
191 :type '(choice (const nil) (const t) string) 194 :type '(choice (const nil) (const t) string)