Function: erc-server-904

erc-server-904 is a byte-compiled function defined in erc-sasl.el.gz.

Signature

(erc-server-904 PROC PARSED)

Documentation

Handle various SASL-related error responses.

Handler for a 904 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-904-functions instead.

Aliases

erc-server-906 erc-server-905

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-sasl.el.gz
(define-erc-response-handler (904 905 906)
  "Handle various SASL-related error responses." nil
  (erc-display-message parsed '(notice error) 'active
                       (intern (format "s%s" (erc-response.command parsed)))
                       ?s (erc-response.contents parsed))
  (erc-sasl--destroy proc))