Function: erc-sasl--destroy

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

Signature

(erc-sasl--destroy PROC)

Documentation

Destroy process PROC and warn user that their settings are likely faulty.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-sasl.el.gz
(defun erc-sasl--destroy (proc)
  "Destroy process PROC and warn user that their settings are likely faulty."
  (delete-process proc)
  (erc--lwarn 'erc-sasl :error
              "Disconnected from %s; please review SASL settings" proc)
  nil)