]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/erc/erc.el (erc-user-mode): Set "+i" by default.
authorStefan Kangas <stefan@marxist.se>
Wed, 29 Sep 2021 23:49:42 +0000 (01:49 +0200)
committerAmin Bandali <bandali@gnu.org>
Mon, 4 Oct 2021 03:06:14 +0000 (23:06 -0400)
lisp/erc/erc.el

index c4077d48ab0575f62208c6b7606a721fc4b355a5..308812f0eb2c45c1206990849bfe4edf7fb794f0 100644 (file)
@@ -188,10 +188,12 @@ parameters and authentication."
 It is not strictly necessary to provide this, since ERC will
 prompt you for it.")
 
-(defcustom erc-user-mode nil
+(defcustom erc-user-mode "+i"
+  ;; +i "Invisible".  Hides user from global /who and /names.
   "Initial user modes to be set after a connection is established."
   :group 'erc
-  :type '(choice (const nil) string function))
+  :type '(choice (const nil) string function)
+  :version "28.1")
 
 
 (defcustom erc-prompt-for-password t