diff options
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/pop3.el | 6 | ||||
-rw-r--r-- | lisp/net/tramp-adb.el | 2 |
2 files changed, 5 insertions, 3 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. diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el index f77e44e79ce..649099ee99d 100644 --- a/lisp/net/tramp-adb.el +++ b/lisp/net/tramp-adb.el @@ -52,7 +52,7 @@ It is used for TCP/IP devices." ;;;###tramp-autoload (defconst tramp-adb-method "adb" - "*When this method name is used, forward all calls to Android Debug Bridge.") + "When this method name is used, forward all calls to Android Debug Bridge.") ;;;###tramp-autoload (defcustom tramp-adb-prompt |