Function: org-match-any-p
org-match-any-p is a byte-compiled function defined in org-macs.el.gz.
Signature
(org-match-any-p RE LIST)
Documentation
Non-nil if regexp RE matches an element in LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-match-any-p (re list)
"Non-nil if regexp RE matches an element in LIST."
(cl-some (lambda (x) (string-match-p re x)) list))