Function: erc-handle-login
erc-handle-login is a byte-compiled function defined in erc.el.gz.
Signature
(erc-handle-login)
Documentation
Handle the logging in process of connection.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;;; MOTD numreplies
(defun erc-handle-login ()
"Handle the logging in process of connection."
(unless erc-logged-in
(setq erc-logged-in t)
(message "Logging in as `%s'... done" (erc-current-nick))
;; execute a startup script
(let ((f (erc-select-startup-file)))
(when f
(erc-load-script f)))))