Function: erc-autojoin-remove

erc-autojoin-remove is a byte-compiled function defined in erc-join.el.gz.

Signature

(erc-autojoin-remove PROC PARSED)

Documentation

Remove the channel being left from erc-autojoin-channels-alist.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-join.el.gz
;; (erc-parse-user "kensanata!~user@dclient217-162-233-228.hispeed.ch")

(defun erc-autojoin-remove (proc parsed)
  "Remove the channel being left from `erc-autojoin-channels-alist'."
  (erc-autojoin--mutate proc parsed 'remove)
  ;; We must return nil to tell ERC to continue running the other
  ;; functions.
  nil)