Function: org-export-match-search-cell-p

org-export-match-search-cell-p is a byte-compiled function defined in ox.el.gz.

Signature

(org-export-match-search-cell-p DATUM CELLS)

Documentation

Non-nil when DATUM matches search cells CELLS.

DATUM is an element or object. CELLS is a list of search cells, as returned by org-export-search-cells.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-match-search-cell-p (datum cells)
  "Non-nil when DATUM matches search cells CELLS.
DATUM is an element or object.  CELLS is a list of search cells,
as returned by `org-export-search-cells'."
  (let ((targets (org-export-search-cells datum)))
    (and targets (cl-some (lambda (cell) (member cell targets)) cells))))