Function: erc-server-900

erc-server-900 is a byte-compiled function defined in erc-backend.el.gz.

Signature

(erc-server-900 PROC PARSED)

Documentation

Handle a "RPL_LOGGEDIN" server command.

Some servers don't consider this SASL-specific but rather just an indication of a server-side state change from logged-out to logged-in.

Handler for a 900 server response. PROC is the server process which returned the response. PARSED is the actual response as an erc-response struct. If you want to add responses don't modify this function, but rather add things to erc-server-900-functions instead.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(define-erc-response-handler (900)
  "Handle a \"RPL_LOGGEDIN\" server command.
Some servers don't consider this SASL-specific but rather just an
indication of a server-side state change from logged-out to
logged-in." nil
  ;; Whenever ERC starts caring about user accounts, it should record
  ;; the session as being logged here.
  (erc-display-message parsed 'notice proc (erc-response.contents parsed)))