diff options
Diffstat (limited to 'lisp/net/pop3.el')
-rw-r--r-- | lisp/net/pop3.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/net/pop3.el b/lisp/net/pop3.el index 589eeb3ab32..d09c1d00fad 100644 --- a/lisp/net/pop3.el +++ b/lisp/net/pop3.el @@ -70,8 +70,10 @@ :group 'pop3) ;; Should this be customizable? -(defvar pop3-password nil - "*Password to use when connecting to POP server.") +(defcustom pop3-password nil + "Password to use when connecting to POP server." + :type '(choice (const nil) string) + :group 'pop3) (defcustom pop3-authentication-scheme 'pass "POP3 authentication scheme. |