Function: erc-list-match

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

Signature

(erc-list-match LST STR)

Documentation

Return non-nil if any regexp in LST matches STR.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-list-match (lst str)
  "Return non-nil if any regexp in LST matches STR."
  (memq nil (mapcar (lambda (regexp)
                      (not (string-match regexp str)))
                    lst)))