Function: erc-services-retry-nick-on-connect
erc-services-retry-nick-on-connect is a byte-compiled function defined
in erc-services.el.gz.
Signature
(erc-services-retry-nick-on-connect WANT)
Documentation
Try at most once to grab nickname WANT after reconnecting.
Expect to be used when automatically reconnecting to servers that are slow to abandon the previous connection.
Note that this strategy may only work under certain conditions, such as when a user's account name matches their nick.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-services.el.gz
(defun erc-services-retry-nick-on-connect (want)
"Try at most once to grab nickname WANT after reconnecting.
Expect to be used when automatically reconnecting to servers
that are slow to abandon the previous connection.
Note that this strategy may only work under certain conditions,
such as when a user's account name matches their nick."
(erc-cmd-NICK want))