Function: erc-buffer-list

erc-buffer-list is a byte-compiled function defined in erc.el.gz.

Signature

(erc-buffer-list &optional PREDICATE PROC)

Documentation

Return a list of ERC buffers.

PREDICATE is a function which executes with every buffer satisfying the predicate. If PREDICATE is passed as nil, return a list of all ERC buffers. If PROC is given, the buffers local variable erc-server-process needs to match PROC.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-buffer-list (&optional predicate proc)
  "Return a list of ERC buffers.
PREDICATE is a function which executes with every buffer satisfying
the predicate.  If PREDICATE is passed as nil, return a list of all ERC
buffers.  If PROC is given, the buffers local variable `erc-server-process'
needs to match PROC."
  (erc-buffer-filter (or predicate #'always) proc))