Function: erc-settings--gather-bindings

erc-settings--gather-bindings is a byte-compiled function defined in erc-settings.el.gz.

Signature

(erc-settings--gather-bindings BUFFER)

Documentation

Return a list of matching bindings for server BUFFER's session.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-settings.el.gz
(defun erc-settings--gather-bindings (buffer)
  "Return a list of matching bindings for server BUFFER's session."
  (with-current-buffer buffer
    (mapcan (lambda (entry)
              (and (erc-settings--buffer-match-p (car entry))
                   (copy-sequence (cdr entry))))
            erc-settings)))