summaryrefslogtreecommitdiff
path: root/lisp/net/pop3.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2016-06-09 20:13:12 -0400
committerGlenn Morris <rgm@gnu.org>2016-06-09 20:13:12 -0400
commitf9af5eddc835bbed2ca100838f8f294901b60c2d (patch)
tree35c399aced8ccdc46ed933a76d297d3572887db4 /lisp/net/pop3.el
parent1c09423880e1c48d6ba02a196430e829d1d87d57 (diff)
downloademacs-f9af5eddc835bbed2ca100838f8f294901b60c2d.tar.gz
Remove obsolete leading * from defcustom, defface doc strings.
* lisp/cedet/ede/linux.el, lisp/cedet/ede/project-am.el: * lisp/cedet/ede/simple.el, lisp/cedet/semantic/bovine/c.el: * lisp/cedet/semantic/complete.el, lisp/cedet/semantic/db.el: * lisp/cedet/semantic/decorate/include.el: * lisp/cedet/semantic/decorate/mode.el, lisp/cedet/semantic/format.el: * lisp/cedet/semantic/ia.el, lisp/cedet/semantic/idle.el: * lisp/cedet/semantic/imenu.el, lisp/cedet/semantic/lex-spp.el: * lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/sb.el: * lisp/cedet/srecode/fields.el, lisp/ecomplete.el: * lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el: * lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el: * lisp/gnus/gnus-cite.el, lisp/gnus/gnus-delay.el: * lisp/gnus/gnus-diary.el, lisp/gnus/gnus-dup.el: * lisp/gnus/gnus-fun.el, lisp/gnus/gnus-group.el: * lisp/gnus/gnus-kill.el, lisp/gnus/gnus-msg.el: * lisp/gnus/gnus-picon.el, lisp/gnus/gnus-salt.el: * lisp/gnus/gnus-score.el, lisp/gnus/gnus-start.el: * lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el: * lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el: * lisp/gnus/gnus.el, lisp/gnus/mail-source.el, lisp/gnus/message.el: * lisp/gnus/mm-url.el, lisp/gnus/mm-uu.el, lisp/gnus/mml.el: * lisp/gnus/nndiary.el, lisp/gnus/nnir.el, lisp/gnus/nnmail.el: * lisp/gnus/smiley.el, lisp/gnus/smime.el, lisp/mail/mail-extr.el: * lisp/mh-e/mh-e.el, lisp/net/mailcap.el, lisp/net/pop3.el: * lisp/net/starttls.el, lisp/progmodes/cc-vars.el: * lisp/progmodes/cperl-mode.el, test/manual/cedet/tests/test.el: Remove obsolete leading * from defcustom, defface doc strings.
Diffstat (limited to 'lisp/net/pop3.el')
-rw-r--r--lisp/net/pop3.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/net/pop3.el b/lisp/net/pop3.el
index 1695bbd3a40..589eeb3ab32 100644
--- a/lisp/net/pop3.el
+++ b/lisp/net/pop3.el
@@ -45,26 +45,26 @@
(defcustom pop3-maildrop (or (user-login-name)
(getenv "LOGNAME")
(getenv "USER"))
- "*POP3 maildrop."
+ "POP3 maildrop."
:version "22.1" ;; Oort Gnus
:type 'string
:group 'pop3)
(defcustom pop3-mailhost (or (getenv "MAILHOST") ;; nil -> mismatch
"pop3")
- "*POP3 mailhost."
+ "POP3 mailhost."
:version "22.1" ;; Oort Gnus
:type 'string
:group 'pop3)
(defcustom pop3-port 110
- "*POP3 port."
+ "POP3 port."
:version "22.1" ;; Oort Gnus
:type 'number
:group 'pop3)
(defcustom pop3-password-required t
- "*Non-nil if a password is required when connecting to POP server."
+ "Non-nil if a password is required when connecting to POP server."
:version "22.1" ;; Oort Gnus
:type 'boolean
:group 'pop3)
@@ -74,7 +74,7 @@
"*Password to use when connecting to POP server.")
(defcustom pop3-authentication-scheme 'pass
- "*POP3 authentication scheme.
+ "POP3 authentication scheme.
Defaults to `pass', for the standard USER/PASS authentication. The other
valid value is `apop'."
:type '(choice (const :tag "Normal user/password" pass)
@@ -515,7 +515,7 @@ Return non-nil if it is necessary to update the local UIDL file."
(insert "X-UIDL: " (nth (1- msgno) pop3-uidl) "\n"))))
(defcustom pop3-stream-type nil
- "*Transport security type for POP3 connections.
+ "Transport security type for POP3 connections.
This may be either nil (plain connection), `ssl' (use an
SSL/TSL-secured stream) or `starttls' (use the starttls mechanism
to turn on TLS security after opening the stream). However, if