Variable: erc-nick
erc-nick is a customizable variable defined in erc.el.gz.
Value
nil
Documentation
Nickname to use if one is not provided.
This can be either a string, or a list of strings. In the latter case, if the first nick in the list is already in use, other nicks are tried in the list order.
See function erc-compute-nick for more details on connection
parameters and authentication.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-nick nil
"Nickname to use if one is not provided.
This can be either a string, or a list of strings.
In the latter case, if the first nick in the list is already in use,
other nicks are tried in the list order.
See function `erc-compute-nick' for more details on connection
parameters and authentication."
:group 'erc
:type '(choice (const :tag "None" nil)
(string :tag "Nickname")
(repeat (string :tag "Nickname"))))