Function: erc-match-pal-p

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

Signature

(erc-match-pal-p NICKUSERHOST MSG)

Documentation

Check whether NICKUSERHOST is in erc-pals.

MSG will be ignored.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defun erc-match-pal-p (nickuserhost _msg)
  "Check whether NICKUSERHOST is in `erc-pals'.
MSG will be ignored."
  (and nickuserhost
       (erc-list-match erc-pals nickuserhost)))