Variable: erc-autojoin-timing
erc-autojoin-timing is a customizable variable defined in
erc-join.el.gz.
Value
connect
Documentation
When ERC should attempt to autojoin a channel.
If the value is connect, autojoin immediately on connecting.
If the value is ident, autojoin after successful NickServ
identification, or after erc-autojoin-delay seconds.
Any other value means the same as connect.
This variable was added, or its default value changed, in Emacs 24.1.
Probably introduced at or before Emacs version 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-join.el.gz
(defcustom erc-autojoin-timing 'connect
"When ERC should attempt to autojoin a channel.
If the value is `connect', autojoin immediately on connecting.
If the value is `ident', autojoin after successful NickServ
identification, or after `erc-autojoin-delay' seconds.
Any other value means the same as `connect'."
:version "24.1"
:type '(choice (const :tag "On Connection" connect)
(const :tag "When Identified" ident)))