Function: erc-message-type-member
erc-message-type-member is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-message-type-member POSITION LIST)
Documentation
Return non-nil if the erc-parsed text-property at POSITION is in LIST.
This function relies on the erc-parsed text-property being present.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-message-type-member (position list)
"Return non-nil if the erc-parsed text-property at POSITION is in LIST.
This function relies on the erc-parsed text-property being
present."
(let ((prop-val (erc-get-parsed-vector position)))
(and prop-val (member (erc-response.command prop-val) list))))