Function: erc-define-catalog

erc-define-catalog is a byte-compiled function defined in erc.el.gz.

This function is obsolete since 30.1; use erc-define-message-format-catalog instead.

Signature

(erc-define-catalog CATALOG ENTRIES)

Documentation

Define a CATALOG according to ENTRIES.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-define-catalog (catalog entries)
  "Define a CATALOG according to ENTRIES."
  (declare (obsolete erc-define-message-format-catalog "30.1"))
  (with-suppressed-warnings ((obsolete erc-define-catalog-entry))
    (dolist (entry entries)
      (erc-define-catalog-entry catalog (car entry) (cdr entry)))))