Function: erc-banlist-finished
erc-banlist-finished is a byte-compiled function defined in erc.el.gz.
This function is obsolete since 31.1; uses obsolete and likely faulty logic
Signature
(erc-banlist-finished PROC PARSED)
Documentation
Record that we have received the banlist.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; This was a default member of `erc-server-368-functions' (nee -hook)
;; between January and June of 2003 (but not as part of any release).
(defun erc-banlist-finished (proc parsed)
"Record that we have received the banlist."
(declare (obsolete "uses obsolete and likely faulty logic" "31.1"))
(let* ((channel (nth 1 (erc-response.command-args parsed)))
(buffer (erc-get-buffer channel proc)))
(with-current-buffer buffer
(put 'erc-channel-banlist 'received-from-server t)))
t) ; suppress the 'end of banlist' message