Function: erc--memq-msg-prop

erc--memq-msg-prop is a byte-compiled function defined in erc.el.gz.

Signature

(erc--memq-msg-prop PROP NEEDLE)

Documentation

Return non-nil if msg PROP's value is a list containing NEEDLE.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--memq-msg-prop (prop needle)
  "Return non-nil if msg PROP's value is a list containing NEEDLE."
  (and-let* ((erc--msg-props)
             (haystack (gethash prop erc--msg-props))
             ((consp haystack)))
    (memq needle haystack)))